Commit d17b42fe authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix a warning

parent 6f9eedc7
...@@ -391,6 +391,7 @@ LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( seekable, int, Bool, 0, ret_value = false ); ...@@ -391,6 +391,7 @@ LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( seekable, int, Bool, 0, ret_value = false );
char* libvlc_vlm_show_media( libvlc_instance_t *p_instance, char *psz_name, char* libvlc_vlm_show_media( libvlc_instance_t *p_instance, char *psz_name,
libvlc_exception_t *p_exception ) libvlc_exception_t *p_exception )
{ {
(void)p_instance;
/* FIXME is it needed ? */ /* FIXME is it needed ? */
libvlc_exception_raise( p_exception, "Unable to call show %s", psz_name ); libvlc_exception_raise( p_exception, "Unable to call show %s", psz_name );
return NULL; return NULL;
......
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