From 4008d8a74e41fdb2b2c29b07898155393845f45e Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 2 Sep 2007 07:33:40 +0000 Subject: [PATCH] Missing const --- include/vlc_config_cat.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/vlc_config_cat.h b/include/vlc_config_cat.h index f1f0289fae..fc1ecb81d2 100644 --- a/include/vlc_config_cat.h +++ b/include/vlc_config_cat.h @@ -239,8 +239,9 @@ #define UNKNOWN_HELP N_("There is no help available for these modules.") /* This function is deprecated and is kept only for compatibility */ -static inline char * GetCapabilityHelp( char *psz_capability, int i_type) +static inline const char * GetCapabilityHelp( char *psz_capability, int i_type) { + (void)psz_capability; (void)i_type; return " "; } -- 2.39.2