mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 07:58: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
@@ -142,7 +142,7 @@ void diff_buf_add(buf_T *buf)
|
||||
}
|
||||
}
|
||||
|
||||
EMSGN(_("E96: Can not diff more than %ld buffers"), DB_COUNT);
|
||||
EMSGN(_("E96: Can not diff more than %" PRId64 " buffers"), DB_COUNT);
|
||||
}
|
||||
|
||||
/// Find buffer "buf" in the list of diff buffers for the current tab page.
|
||||
|
Reference in New Issue
Block a user