aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/strings.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-09-04 15:55:16 +0800
committerGitHub <noreply@github.com>2023-09-04 15:55:16 +0800
commit069fad6e2df25e6b079879670cf6c68ae7ddb012 (patch)
tree01194242b797c92733fb17f55dacc3745815bcbd /src/nvim/strings.c
parentc431d820e7be1c511d3d16e89cdffaa21b7909fa (diff)
downloadrneovim-069fad6e2df25e6b079879670cf6c68ae7ddb012.tar.gz
rneovim-069fad6e2df25e6b079879670cf6c68ae7ddb012.tar.bz2
rneovim-069fad6e2df25e6b079879670cf6c68ae7ddb012.zip
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 https://github.com/vim/vim/commit/7db89bdc23e53c7bc43af6f1c7281bc69a6a3098
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r--src/nvim/strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c
index b66dff3c18..bc877ec1cc 100644
--- a/src/nvim/strings.c
+++ b/src/nvim/strings.c
@@ -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;
}