diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-07 20:20:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-07 20:20:50 +0200 |
commit | a772ec5e91efbd5c4b99bb5cf5704a6c6f0baf3f (patch) | |
tree | e18f7f8fcf77fee3a8a795c71df2eba4a66f7cc6 /src/ex_cmds2.c | |
parent | b73598e2f022a22fec512ea681c70d2775e8fd87 (diff) | |
download | vim-a772ec5e91efbd5c4b99bb5cf5704a6c6f0baf3f.zip |
patch 7.4.2181
Problem: Compiler warning for unused variable.
Solution: Remove it. (Dominique Pelle)
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 73b3a522f..5af2b4058 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1256,8 +1256,6 @@ stop_timer(timer_T *timer) void stop_all_timers(void) { - timer_T *timer; - while (first_timer != NULL) stop_timer(first_timer); } |