diff options
-rw-r--r-- | src/nvim/ex_cmds2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index 4eb1839d40..c87f134ea2 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -746,13 +746,14 @@ void dbg_breakpoint(char_u *name, linenr_T lnum) } static char_u *profile_fname = NULL; -static proftime_T pause_time; /* * ":profile cmd args" */ void ex_profile(exarg_T *eap) { + static proftime_T pause_time; + char_u *e; int len; |