0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.0587: compiler warning for unused variable

Problem:    Compiler warning for unused variable.
Solution:   Add UNUSED.
This commit is contained in:
Bram Moolenaar
2020-04-16 23:01:50 +02:00
parent 4a8d9f2ed8
commit 21cfe500f3
2 changed files with 3 additions and 1 deletions

View File

@@ -4783,7 +4783,7 @@ ends_excmd(int c)
* 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;