diff options
Diffstat (limited to '')
-rw-r--r-- | src/command.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.h b/src/command.h index f08ebb16a..cf8874a17 100644 --- a/src/command.h +++ b/src/command.h @@ -50,13 +50,13 @@ void finishCommands(); if(current_command) { \ myfprintf(fp, "ACK [%i@%i] {%s} " format "\n", \ (int)error, command_listNum, \ - current_command, ##__VA_ARGS__); \ + current_command, __VA_ARGS__); \ current_command = NULL; \ } \ else { \ myfprintf(stderr, "ACK [%i@%i] " format "\n", \ (int)error, command_listNum, \ - ##__VA_ARGS__); \ + __VA_ARGS__); \ } \ } |