Skip to content
Snippets Groups Projects
Commit 9619e4d5 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont
Browse files

input: Remove a warning about an unused argument.

parent 63c9675b
No related branches found
No related tags found
No related merge requests found
......@@ -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) )
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment