]> git.sesse.net Git - vlc/commitdiff
Minor fix, cleared warnings for unused var and undeclared type
authorMark Moriarty <markfm@videolan.org>
Wed, 29 Sep 2004 23:14:00 +0000 (23:14 +0000)
committerMark Moriarty <markfm@videolan.org>
Wed, 29 Sep 2004 23:14:00 +0000 (23:14 +0000)
modules/control/rc.c

index 34aa35afdc5031ee7794078f2190a04d5cf44d54..057cf2a758d25c15f12b3e54e9525f3dd3f87f74 100644 (file)
@@ -792,7 +792,6 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
 {
     intf_thread_t *p_intf = (intf_thread_t*)p_this;
     playlist_t *p_playlist;
-    vlc_value_t     val;
 
     p_playlist = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST,
                                            FIND_ANYWHERE );
@@ -851,7 +850,7 @@ static int Playlist( vlc_object_t *p_this, char const *psz_cmd,
     return VLC_SUCCESS;
 }
 
-static Other( vlc_object_t *p_this, char const *psz_cmd,
+static int Other( vlc_object_t *p_this, char const *psz_cmd,
                      vlc_value_t oldval, vlc_value_t newval, void *p_data )
 {
     intf_thread_t *p_intf = (intf_thread_t*)p_this;