commit | 21cfe500f322a0bea3367c677943ea6c57c282b9 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Apr 16 23:01:50 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Apr 16 23:01:50 2020 +0200 |
tree | 1d10a2af3cd870bdff64966a214eed22deeed233 | |
parent | 4a8d9f2ed8c0079732e35d72656a000641353b94 [diff] [blame] |
patch 8.2.0587: compiler warning for unused variable Problem: Compiler warning for unused variable. Solution: Add UNUSED.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index cc7139d..c70a433 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c
@@ -4783,7 +4783,7 @@ * to "cmd_start" or has a white space character before it. */ int -ends_excmd2(char_u *cmd_start, char_u *cmd) +ends_excmd2(char_u *cmd_start UNUSED, char_u *cmd) { int c = *cmd;