aboutsummaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2014-04-20 15:20:22 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-23 06:56:33 -0300
commitb8f3ff2a694f49b027b23d6afe218a6f2cb254c0 (patch)
treebf8ee0283dfc475dcb37fe20ee7c3e816ec2f8e7 /src/quickfix.c
parentbf3b9d0ecbb16fc998c1c9656fd2ec235708ec55 (diff)
downloadrneovim-b8f3ff2a694f49b027b23d6afe218a6f2cb254c0.tar.gz
rneovim-b8f3ff2a694f49b027b23d6afe218a6f2cb254c0.tar.bz2
rneovim-b8f3ff2a694f49b027b23d6afe218a6f2cb254c0.zip
Use portable format specifiers: Case %ld - localized - EMSGN.
Fix uses of localized "%ld" within EMSGN(): - Replace "%ld" with "%" PRId64. - No argument cast needed. EMSGN() will take care of that.
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index 60d7ea0235..46511b2c19 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -3386,7 +3386,7 @@ int set_errorlist(win_T *wp, list_T *list, int action, char_u *title)
if (bufnum != 0 && (buflist_findnr(bufnum) == NULL)) {
if (!did_bufnr_emsg) {
did_bufnr_emsg = TRUE;
- EMSGN(_("E92: Buffer %ld not found"), bufnum);
+ EMSGN(_("E92: Buffer %" PRId64 " not found"), bufnum);
}
valid = FALSE;
bufnum = 0;