From 80dd76db7f927be1b6a967f43f36d705b701f153 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Tue, 15 Jun 2004 18:06:21 +0000 Subject: fix C99 stuff for commandError also some slight optimizations to interfacePrintWithFD() and myfprintf() git-svn-id: https://svn.musicpd.org/mpd/trunk@1503 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/command.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command.h') diff --git a/src/command.h b/src/command.h index f08ebb16..cf8874a1 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__); \ } \ } -- cgit v1.2.3