mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 04:58:33 +00:00
src/nvim/eval.c: printf error
This commit is contained in:
@@ -16199,7 +16199,7 @@ static void f_submatch(typval_T *argvars, typval_T *rettv, FunPtr fptr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (no < 0 || no >= NSUBEXP) {
|
if (no < 0 || no >= NSUBEXP) {
|
||||||
EMSG2(_("E935: invalid submatch number: %ld"), no);
|
EMSG2(_("E935: invalid submatch number: %d"), no);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
int retList = 0;
|
int retList = 0;
|
||||||
|
Reference in New Issue
Block a user