diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-04-20 18:29:30 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-23 06:56:33 -0300 |
commit | 28bac30c196fbe74a635b0c285bad0cd34bfaffa (patch) | |
tree | 80164720879ed325aaf28f33a5044f54951b4ccc /src/eval.c | |
parent | b8f3ff2a694f49b027b23d6afe218a6f2cb254c0 (diff) | |
download | rneovim-28bac30c196fbe74a635b0c285bad0cd34bfaffa.tar.gz rneovim-28bac30c196fbe74a635b0c285bad0cd34bfaffa.tar.bz2 rneovim-28bac30c196fbe74a635b0c285bad0cd34bfaffa.zip |
Use portable format specifiers: Case %ld - localized - N_.
Fix uses of plain "%ld" within N_():
- Replace "%ld" with "%" PRId64.
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 1bac3f535d..b53b04258f 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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"); |