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

Fix prototypes

/!\ In pure C, `()` means `(...)`, not `(void)`
parent ef20d249
...@@ -187,17 +187,17 @@ int libvlc_get_vlc_id( libvlc_instance_t *p_instance ) ...@@ -187,17 +187,17 @@ int libvlc_get_vlc_id( libvlc_instance_t *p_instance )
return p_instance->p_libvlc_int->i_object_id; return p_instance->p_libvlc_int->i_object_id;
} }
const char * libvlc_get_version() const char * libvlc_get_version(void)
{ {
return VLC_Version(); return VLC_Version();
} }
const char * libvlc_get_compiler() const char * libvlc_get_compiler(void)
{ {
return VLC_Compiler(); return VLC_Compiler();
} }
const char * libvlc_get_changeset() const char * libvlc_get_changeset(void)
{ {
return VLC_Changeset(); return VLC_Changeset();
} }
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