diff options
author | Anton Ovchinnikov <revolver112@gmail.com> | 2015-03-09 00:40:50 +0100 |
---|---|---|
committer | Anton Ovchinnikov <revolver112@gmail.com> | 2015-03-09 00:40:50 +0100 |
commit | 9925b3a0477e5af348a8348544e69a65a9222c1b (patch) | |
tree | 467cdcd1d1f9f6662aa7ea9331f4ddceacbdbfb8 /src/nvim/ex_eval.c | |
parent | c0a668aa26a01145bee1d8162e14bacd0a10eca2 (diff) | |
download | rneovim-9925b3a0477e5af348a8348544e69a65a9222c1b.tar.gz rneovim-9925b3a0477e5af348a8348544e69a65a9222c1b.tar.bz2 rneovim-9925b3a0477e5af348a8348544e69a65a9222c1b.zip |
Remove redundant casts
Diffstat (limited to 'src/nvim/ex_eval.c')
-rw-r--r-- | src/nvim/ex_eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_eval.c b/src/nvim/ex_eval.c index 7a8920e2a0..d2774804f8 100644 --- a/src/nvim/ex_eval.c +++ b/src/nvim/ex_eval.c @@ -1815,7 +1815,7 @@ void leave_cleanup(cleanup_T *csp) if (aborting() || need_rethrow) { if (pending & CSTP_THROW) /* Cancel the pending exception (includes report). */ - discard_exception((except_T *)csp->exception, FALSE); + discard_exception(csp->exception, FALSE); else report_discard_pending(pending, NULL); |