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 e55c261..6f1b9e7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@
 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 2fcb948..8c8bf88 100644
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -1998,7 +1998,7 @@
 			    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;