Commit eb0af115 authored by Clément Stenac's avatar Clément Stenac

Fix compilation warnings

parent c37f1230
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* export.c : Playlist export module * export.c : Playlist export module
***************************************************************************** *****************************************************************************
* Copyright (C) 2004 VideoLAN * Copyright (C) 2004 VideoLAN
* $Id: export.c,v 1.1 2004/01/11 00:45:06 zorglub Exp $ * $Id: export.c,v 1.2 2004/02/22 15:52:33 zorglub Exp $
* *
* Authors: Clment Stenac <zorglub@videolan.org> * Authors: Clment Stenac <zorglub@videolan.org>
* *
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
/*************************************************************************** /***************************************************************************
* Prototypes * Prototypes
***************************************************************************/ ***************************************************************************/
void Export_Native ( intf_thread_t *p_intf ); int Export_Native ( vlc_object_t *p_intf );
void Export_M3U ( intf_thread_t *p_intf ); int Export_M3U ( vlc_object_t *p_intf );
void Export_Old ( intf_thread_t *p_intf ); int Export_Old ( vlc_object_t *p_intf );
/***************************************************************************** /*****************************************************************************
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* native.c : Native playlist export module * native.c : Native playlist export module
***************************************************************************** *****************************************************************************
* Copyright (C) 2004 VideoLAN * Copyright (C) 2004 VideoLAN
* $Id: native.c,v 1.1 2004/01/11 00:45:06 zorglub Exp $ * $Id: native.c,v 1.2 2004/02/22 15:52:33 zorglub Exp $
* *
* Authors: Clément Stenac <zorglub@videolan.org> * Authors: Clément Stenac <zorglub@videolan.org>
* *
...@@ -42,7 +42,7 @@ int Export_Native ( vlc_object_t * ); ...@@ -42,7 +42,7 @@ int Export_Native ( vlc_object_t * );
int Export_Native( vlc_object_t *p_this ) int Export_Native( vlc_object_t *p_this )
{ {
playlist_t *p_playlist = (playlist_t*)p_this; playlist_t *p_playlist = (playlist_t*)p_this;
playlist_export_t *p_export = (playlist_export_t *)p_playlist->p_private;
msg_Dbg(p_playlist, "Saving using native format"); msg_Dbg(p_playlist, "Saving using native format");
return VLC_SUCCESS;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment