vim-patch:9.0.1863: wrong format specifiers in e_aptypes_is_null_str_nr (#25015)

Problem:  wrong format specifiers in e_aptypes_is_null_str_nr
Solution: Fix the wrong format specifier

closes: vim/vim#13020

7db89bdc23
This commit is contained in:
zeertzjq 2023-09-04 15:55:16 +08:00 committed by GitHub
parent c431d820e7
commit 069fad6e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1250,7 +1250,7 @@ static void skip_to_arg(const char **ap_types, va_list ap_start, va_list *ap, in
for (*arg_cur = arg_min; *arg_cur < *arg_idx - 1; (*arg_cur)++) {
if (ap_types == NULL || ap_types[*arg_cur] == NULL) {
semsg(e_aptypes_is_null_str_nr, fmt, *arg_cur);
siemsg(e_aptypes_is_null_str_nr, fmt, *arg_cur);
return;
}