Commit d6a357e1 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Access: kill unused argument warnings

parent 4c9b69da
......@@ -268,6 +268,7 @@ static void FindMountPoint(char **file)
}
#else
# warning Disc device to mount point not implemented
VLC_UNUSED( device );
#endif
}
......
......@@ -138,6 +138,8 @@ static bool is_looping(access_t *p_access, const char *psz_uri)
}
return b_looping;
#else
VLC_UNUSED(p_access);
VLC_UNUSED(psz_uri);
return false;
#endif
}
......
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