mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
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.
This commit is contained in:

committed by
Thiago de Arruda

parent
bf3b9d0ecb
commit
b8f3ff2a69
@@ -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;
|
||||
|
Reference in New Issue
Block a user