aboutsummaryrefslogtreecommitdiff
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index a726ca1a79..4d17e7ba41 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -756,7 +756,7 @@ int do_move(linenr_T line1, linenr_T line2, linenr_T dest)
if (num_lines == 1)
MSG(_("1 line moved"));
else
- smsg((char_u *)_("%ld lines moved"), num_lines);
+ smsg((char_u *)_("%" PRId64 " lines moved"), (int64_t)num_lines);
}
/*