From: RĂ©mi Denis-Courmont Date: Sun, 2 Sep 2007 07:33:40 +0000 (+0000) Subject: Missing const X-Git-Tag: 0.9.0-test0~5924 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=4008d8a74e41fdb2b2c29b07898155393845f45e;p=vlc Missing const --- 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 " "; }