comparison src/vim9execute.c @ 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 1098989a90ee
children ad37a198a708
comparison
equal deleted inserted replaced
19634:d70e059c4c30 19635:d202122a4963
1996 break; 1996 break;
1997 case JUMP_AND_KEEP_IF_FALSE: 1997 case JUMP_AND_KEEP_IF_FALSE:
1998 when = "JUMP_AND_KEEP_IF_FALSE"; 1998 when = "JUMP_AND_KEEP_IF_FALSE";
1999 break; 1999 break;
2000 } 2000 }
2001 smsg("%4d %s -> %lld", current, when, 2001 smsg("%4d %s -> %d", current, when,
2002 iptr->isn_arg.jump.jump_where); 2002 iptr->isn_arg.jump.jump_where);
2003 } 2003 }
2004 break; 2004 break;
2005 2005
2006 case ISN_FOR: 2006 case ISN_FOR: