summaryrefslogtreecommitdiff
path: root/src/ops.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-23 22:12:22 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-23 22:12:22 +0100
commitdb99f9f29a248b84742b6779c3343123f72065e7 (patch)
treee0f89d9f7c7b5c44e3d5abbde004ae814b11688e /src/ops.c
parentdbbb0ef729e392e313ccc63c247bff1b828a214d (diff)
downloadvim-git-db99f9f29a248b84742b6779c3343123f72065e7.tar.gz
patch 8.2.0436: no warnings for incorrect printf argumentsv8.2.0436
Problem: No warnings for incorrect printf arguments. Solution: Fix attribute in declaration. Fix uncovered mistakes. (Dominique Pelle, closes #5834)
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index 08209c7c6..eaeb0f795 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -2999,7 +2999,7 @@ op_addsub(
curbuf->b_op_start = startpos;
if (change_cnt > p_report)
- smsg(NGETTEXT("%ld line changed", "%ld lines changed",
+ smsg(NGETTEXT("%d line changed", "%d lines changed",
change_cnt), change_cnt);
}
}