Skip to content

Commit 8a677a3

Browse files
committed
patch 8.2.0374: using wrong printf directive for jump location
Problem: Using wrong printf directive for jump location. Solution: Change "%lld" to "%d". (James McCoy, closes #5773)
1 parent 3a05ce6 commit 8a677a3

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
374,
741743
/**/
742744
373,
743745
/**/

src/vim9execute.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1998,7 +1998,7 @@ ex_disassemble(exarg_T *eap)
19981998
when = "JUMP_AND_KEEP_IF_FALSE";
19991999
break;
20002000
}
2001-
smsg("%4d %s -> %lld", current, when,
2001+
smsg("%4d %s -> %d", current, when,
20022002
iptr->isn_arg.jump.jump_where);
20032003
}
20042004
break;

0 commit comments

Comments
 (0)