diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-08-07 20:06:46 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-08-07 20:06:46 +0000 |
commit | 5f1e53e88745f9387d76404771992d2a6e2ea535 (patch) | |
tree | 5503b28a4349c80e2ecc96a74fb228305140b68d /src/command.c | |
parent | 831ee7c63ef8582734b5671b2170cf2750431d0c (diff) | |
download | mpd-5f1e53e88745f9387d76404771992d2a6e2ea535.tar.gz mpd-5f1e53e88745f9387d76404771992d2a6e2ea535.tar.xz mpd-5f1e53e88745f9387d76404771992d2a6e2ea535.zip |
command: static-fication since commandError is no longer a macro
git-svn-id: https://svn.musicpd.org/mpd/trunk@4593 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.c b/src/command.c index 0817b983f..f32a03466 100644 --- a/src/command.c +++ b/src/command.c @@ -131,8 +131,8 @@ struct _CommandEntry { CommandListHandlerFunction listHandler; }; -char *current_command = NULL; -int command_listNum = 0; +static char *current_command = NULL; +static int command_listNum = 0; static CommandEntry *getCommandEntryFromString(char *string, int *permission); |