diff options
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 9aab97b7cc..0cbd4faccb 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -4480,9 +4480,8 @@ do_sub_msg ( "%s", count_only ? _("1 match") : _("1 substitution")); else vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), - count_only ? - _("%" PRId64 " matches") : - _("%" PRId64 " substitutions"), + count_only ? _("%" PRId64 " matches") + : _("%" PRId64 " substitutions"), (int64_t)sub_nsubs); if (sub_nlines == 1) vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |