From: RĂ©mi Denis-Courmont Date: Sun, 1 Jun 2008 07:48:49 +0000 (+0300) Subject: Fix prototypes X-Git-Tag: 0.9.0-test0~463 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6f9eedc7b73936de86ab406f9cfd3e3946d68d96;p=vlc Fix prototypes /!\ In pure C, `()` means `(...)`, not `(void)` --- diff --git a/src/control/core.c b/src/control/core.c index 98865684f4..b5efae2847 100644 --- a/src/control/core.c +++ b/src/control/core.c @@ -187,17 +187,17 @@ int libvlc_get_vlc_id( libvlc_instance_t *p_instance ) return p_instance->p_libvlc_int->i_object_id; } -const char * libvlc_get_version() +const char * libvlc_get_version(void) { return VLC_Version(); } -const char * libvlc_get_compiler() +const char * libvlc_get_compiler(void) { return VLC_Compiler(); } -const char * libvlc_get_changeset() +const char * libvlc_get_changeset(void) { return VLC_Changeset(); }