command: command_error() is not necessary for export.
This commit is contained in:
parent
215cdda08d
commit
96ab110b44
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue