Commit 96ab110b authored by Avuton Olrich's avatar Avuton Olrich Committed by Max Kellermann

command: command_error() is not necessary for export.

parent 215cdda0
...@@ -122,7 +122,7 @@ static void command_error_v(struct client *client, enum ack error, ...@@ -122,7 +122,7 @@ static void command_error_v(struct client *client, enum ack error,
current_command = NULL; 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, ...) const char *fmt, ...)
{ {
va_list args; va_list args;
......
...@@ -47,7 +47,4 @@ command_process(struct client *client, char *commandString); ...@@ -47,7 +47,4 @@ command_process(struct client *client, char *commandString);
void command_success(struct client *client); void command_success(struct client *client);
G_GNUC_PRINTF(3, 4) void command_error(struct client *client, enum ack error,
const char *fmt, ...);
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment