mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
Use portable format specifiers: Adapt EMSGN/emsgn to use (int64_t).
This commit is contained in:

committed by
Thiago de Arruda

parent
f4b81576cc
commit
5b0aa1cb57
@@ -1046,7 +1046,7 @@ typedef enum {
|
||||
#define EMSG2(s, p) emsg2((char_u *)(s), (char_u *)(p))
|
||||
#define EMSG3(s, p, q) emsg3((char_u *)(s), (char_u *)(p), \
|
||||
(char_u *)(q))
|
||||
#define EMSGN(s, n) emsgn((char_u *)(s), (long)(n))
|
||||
#define EMSGN(s, n) emsgn((char_u *)(s), (int64_t)(n))
|
||||
#define EMSGU(s, n) emsgu((char_u *)(s), (long_u)(n))
|
||||
#define OUT_STR(s) out_str((char_u *)(s))
|
||||
#define OUT_STR_NF(s) out_str_nf((char_u *)(s))
|
||||
|
Reference in New Issue
Block a user