Use portable format specifiers: Adapt EMSGN/emsgn to use (int64_t).

This commit is contained in:
Eliseo Martínez
2014-04-20 15:00:31 +02:00
committed by Thiago de Arruda
parent f4b81576cc
commit 5b0aa1cb57
3 changed files with 4 additions and 4 deletions

View File

@@ -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))