diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-03-23 22:12:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-03-23 22:12:22 +0100 |
commit | db99f9f29a248b84742b6779c3343123f72065e7 (patch) | |
tree | e0f89d9f7c7b5c44e3d5abbde004ae814b11688e /src/ops.c | |
parent | dbbb0ef729e392e313ccc63c247bff1b828a214d (diff) | |
download | vim-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } } |