[vlc-devel] commit: input: Remove a warning about an unused argument. (Pierre d' Herbemont )
git version control
git at videolan.org
Wed Aug 13 00:54:37 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Wed Aug 13 00:19:41 2008 +0200| [9619e4d51087e2eba08ed3643d67572c3f2362a1] | committer: Pierre d'Herbemont
input: Remove a warning about an unused argument.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9619e4d51087e2eba08ed3643d67572c3f2362a1
---
src/input/meta.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/input/meta.c b/src/input/meta.c
index bdc16eb..402c991 100644
--- a/src/input/meta.c
+++ b/src/input/meta.c
@@ -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) )
{
More information about the vlc-devel
mailing list