diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-12 01:47:52 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-12 01:47:52 +0000 |
commit | 4735ddce40ae815593ee78e83410c05b7a687d1b (patch) | |
tree | 44d87b3e60c32b8e0fddff4055be9a1b1ca42a08 /src/command.c | |
parent | 1f118ea90dd0a22bd40e76a96900ffb36aa93134 (diff) | |
download | mpd-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 '')
-rw-r--r-- | src/command.c | 2 |
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; } |