summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-12 19:15:45 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-12 19:15:45 +0100
commit8a677a37d03692db274c8b00cb20dbba9604505e (patch)
treebcb4cca40533f5f83de424483e4e8ee1086b3f3a
parent3a05ce63feae040cd817be289e84c2a7e653d59d (diff)
patch 8.2.0374: using wrong printf directive for jump locationv8.2.0374
Problem: Using wrong printf directive for jump location. Solution: Change "%lld" to "%d". (James McCoy, closes #5773)
-rw-r--r--src/version.c2
-rw-r--r--src/vim9execute.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c
index e55c26143a..6f1b9e7936 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 374,
+/**/
373,
/**/
372,
diff --git a/src/vim9execute.c b/src/vim9execute.c
index 2fcb948cae..8c8bf88f39 100644
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -1998,7 +1998,7 @@ ex_disassemble(exarg_T *eap)
when = "JUMP_AND_KEEP_IF_FALSE";
break;
}
- smsg("%4d %s -> %lld", current, when,
+ smsg("%4d %s -> %d", current, when,
iptr->isn_arg.jump.jump_where);
}
break;