mirror of
https://github.com/neovim/neovim.git
synced 2025-09-12 06:18:16 +00:00
Use portable format specifiers: Case %ld - localized - N_.
Fix uses of plain "%ld" within N_(): - Replace "%ld" with "%" PRId64.
This commit is contained in:

committed by
Thiago de Arruda

parent
b8f3ff2a69
commit
28bac30c19
@@ -133,7 +133,7 @@ typedef struct lval_S {
|
||||
|
||||
|
||||
static char *e_letunexp = N_("E18: Unexpected characters in :let");
|
||||
static char *e_listidx = N_("E684: list index out of range: %ld");
|
||||
static char *e_listidx = N_("E684: list index out of range: %" PRId64);
|
||||
static char *e_undefvar = N_("E121: Undefined variable: %s");
|
||||
static char *e_missbrac = N_("E111: Missing ']'");
|
||||
static char *e_listarg = N_("E686: Argument of %s must be a List");
|
||||
|
Reference in New Issue
Block a user