From: Bram Moolenaar Date: Thu, 12 Mar 2020 18:15:45 +0000 (+0100) Subject: patch 8.2.0374: using wrong printf directive for jump location X-Git-Tag: v8.2.0374 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a677a37d03692db274c8b00cb20dbba9604505e;p=vim 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) --- diff --git a/src/version.c b/src/version.c index e55c26143..6f1b9e793 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 374, /**/ 373, /**/ diff --git a/src/vim9execute.c b/src/vim9execute.c index 2fcb948ca..8c8bf88f3 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;