mirror of
https://github.com/neovim/neovim.git
synced 2025-09-12 06:18:16 +00:00
Use portable format specifiers: Case %ld - plain - EMSGN.
Fix uses of plain "%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
5b0aa1cb57
commit
bf3b9d0ecb
@@ -11660,7 +11660,7 @@ static void f_matchadd(typval_T *argvars, typval_T *rettv)
|
||||
if (error == TRUE)
|
||||
return;
|
||||
if (id >= 1 && id <= 3) {
|
||||
EMSGN("E798: ID is reserved for \":match\": %ld", id);
|
||||
EMSGN("E798: ID is reserved for \":match\": %" PRId64, id);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user