]> git.sesse.net Git - vlc/commitdiff
input: Remove a warning about an unused argument.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 12 Aug 2008 22:19:41 +0000 (00:19 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 12 Aug 2008 22:57:26 +0000 (00:57 +0200)
src/input/meta.c

index bdc16ebc9190c66f976cfcc1e2bb5a100476872e..402c9919ea47577b26d663e6678db48be32524d6 100644 (file)
@@ -239,7 +239,8 @@ static void __ArtCacheGetDirPath( vlc_object_t *p_obj,
                                   const char *psz_title,
                                   const char *psz_artist, const char *psz_album )
 {
-   char *psz_cachedir = config_GetCacheDir();
+    (void)p_obj;
+    char *psz_cachedir = config_GetCacheDir();
 
     if( !EMPTY_STR(psz_artist) && !EMPTY_STR(psz_album) )
     {