diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-03-07 22:52:36 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-03-07 22:52:36 +0100 |
commit | 5fbe6993903ed3e8d7c288b337c1b0eaf2e14bd8 (patch) | |
tree | eec620b72450f8a8866ebcb26a82b87e2190fee0 /src/buffer.c | |
parent | 8ec1f8523b309aa9eb52e2854fc9a4b9559ebe80 (diff) | |
download | vim-5fbe6993903ed3e8d7c288b337c1b0eaf2e14bd8.zip |
updated for version 7.3.469
Problem: Compiler warning for unused argument without some features.
Solution: Add UNUSED.
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 1b5ae9f9a..5fda06d71 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -329,7 +329,7 @@ close_buffer(win, buf, action, abort_if_last) win_T *win; /* if not NULL, set b_last_cursor */ buf_T *buf; int action; - int abort_if_last; + int abort_if_last UNUSED; { #ifdef FEAT_AUTOCMD int is_curbuf; |