mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
src/nvim/eval.c: printf error
This commit is contained in:
parent
affef0aab8
commit
50c22325df
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user