1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00

[gettext] explicit cast to char * in n_()

This commit is contained in:
Witold Filipczyk 2022-02-25 20:53:39 +01:00
parent ee4d281fd0
commit cd55911c83

View File

@ -163,15 +163,15 @@ __(char *file, unsigned int line, char *func,
* about charset (usually during initialization or when you don't use terminals * about charset (usually during initialization or when you don't use terminals
* at all), use ngettext() directly. */ * at all), use ngettext() directly. */
static inline char * static inline char *
n_(char *msg1, char *msg2, unsigned long int n, struct terminal *term) n_(const char *msg1, const char *msg2, unsigned long int n, struct terminal *term)
{ {
/* Prevent useless (and possibly dangerous) calls. */ /* Prevent useless (and possibly dangerous) calls. */
if (!msg1 || !*msg1) if (!msg1 || !*msg1)
return msg1; return (char *)msg1;
if (term) intl_set_charset(term); if (term) intl_set_charset(term);
return (char *) ngettext(msg1, msg2, n); return (char *)ngettext(msg1, msg2, n);
} }