From 6f9eedc7b73936de86ab406f9cfd3e3946d68d96 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 1 Jun 2008 10:48:49 +0300 Subject: [PATCH] Fix prototypes /!\ In pure C, `()` means `(...)`, not `(void)` --- src/control/core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); } -- 2.39.2