command: command_error() is not necessary for export.

This commit is contained in:
Avuton Olrich 2009-03-29 10:58:15 -07:00 committed by Max Kellermann
parent 215cdda08d
commit 96ab110b44
2 changed files with 1 additions and 4 deletions

View File

@ -122,7 +122,7 @@ static void command_error_v(struct client *client, enum ack error,
current_command = NULL;
}
G_GNUC_PRINTF(3, 4) void command_error(struct client *client, enum ack error,
G_GNUC_PRINTF(3, 4) static void command_error(struct client *client, enum ack error,
const char *fmt, ...)
{
va_list args;

View File

@ -47,7 +47,4 @@ command_process(struct client *client, char *commandString);
void command_success(struct client *client);
G_GNUC_PRINTF(3, 4) void command_error(struct client *client, enum ack error,
const char *fmt, ...);
#endif