aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2009-03-29 10:58:15 -0700
committerMax Kellermann <max@duempel.org>2009-03-30 19:21:41 +0200
commit96ab110b44bf2f3445e15f5afcb80439b9da6242 (patch)
tree10461416dc1540233b5370857372ae430778e44c /src/command.c
parent215cdda08d3b69c3a58a6b783e4c8b14a3277d5f (diff)
downloadmpd-96ab110b44bf2f3445e15f5afcb80439b9da6242.tar.gz
mpd-96ab110b44bf2f3445e15f5afcb80439b9da6242.tar.xz
mpd-96ab110b44bf2f3445e15f5afcb80439b9da6242.zip
command: command_error() is not necessary for export.
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.c b/src/command.c
index d4363ff65..762db37b3 100644
--- a/src/command.c
+++ b/src/command.c
@@ -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;