aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-11-12 01:47:52 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-11-12 01:47:52 +0000
commit4735ddce40ae815593ee78e83410c05b7a687d1b (patch)
tree44d87b3e60c32b8e0fddff4055be9a1b1ca42a08 /src/command.c
parent1f118ea90dd0a22bd40e76a96900ffb36aa93134 (diff)
downloadmpd-4735ddce40ae815593ee78e83410c05b7a687d1b.tar.gz
mpd-4735ddce40ae815593ee78e83410c05b7a687d1b.tar.xz
mpd-4735ddce40ae815593ee78e83410c05b7a687d1b.zip
correct a type in the error message
git-svn-id: https://svn.musicpd.org/mpd/trunk@2625 09075e82-0dd4-0310-85a5-a0d7c8717e4f
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 248fa1542..66ac072c5 100644
--- a/src/command.c
+++ b/src/command.c
@@ -449,7 +449,7 @@ int handleFind(FILE * fp, unsigned int * permission, int argArrayLength,
argArrayLength-1, &items);
if(numItems <= 0) {
- commandError(fp, ACK_ERROR_ARG, "incorrect ags", NULL);
+ commandError(fp, ACK_ERROR_ARG, "incorrect arguments", NULL);
return -1;
}