# HG changeset patch # User Bram Moolenaar # Date 1584037805 -3600 # Node ID d202122a4963f04c5c2ff82fe81d42f6ec390105 # Parent d70e059c4c30d3ba502dc0d19eb0b0ee80f1e403 patch 8.2.0374: using wrong printf directive for jump location Commit: https://github.com/vim/vim/commit/8a677a37d03692db274c8b00cb20dbba9604505e Author: Bram Moolenaar Date: Thu Mar 12 19:15:45 2020 +0100 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 https://github.com/vim/vim/issues/5773) diff --git a/src/version.c b/src/version.c --- 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 --- 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;