1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[libintl] const in n_

This commit is contained in:
Witold Filipczyk 2022-02-03 19:54:57 +01:00
parent a86f992c42
commit 1e7de877d3
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ _(const char *msg, struct terminal *term)
} }
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)
{ {
return gettext_noop(msg1); return gettext_noop(msg1);
} }

View File

@ -121,11 +121,11 @@ __(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);