Commit 4008d8a7 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Missing const

parent 844dbdaf
......@@ -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 " ";
}
......
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