changeset 19635:d202122a4963 v8.2.0374

patch 8.2.0374: using wrong printf directive for jump location Commit: https://github.com/vim/vim/commit/8a677a37d03692db274c8b00cb20dbba9604505e Author: Bram Moolenaar <Bram@vim.org> 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)
author Bram Moolenaar <Bram@vim.org>
date Thu, 12 Mar 2020 19:30:05 +0100
parents d70e059c4c30
children 399a2c964eb3
files src/version.c src/vim9execute.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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,
--- 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;