From 5070f8bc7870c1e65570849a29f5779741555f7c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 15 Jul 2006 13:58:02 +0000 Subject: command.c: fix a format-string error (go sparse!) git-svn-id: https://svn.musicpd.org/mpd/trunk@4356 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/command.c b/src/command.c index ea7d0913..8283c396 100644 --- a/src/command.c +++ b/src/command.c @@ -218,7 +218,7 @@ static int handlePause(FILE * fp, unsigned int * permission, char * test; int pause = strtol(argArray[1],&test,10); if(*test!='\0' || (pause!=0 && pause!=1)) { - commandError(fp, ACK_ERROR_ARG, "\%s\" is not 0 or 1", argArray[1]); + commandError(fp, ACK_ERROR_ARG, "\"%s\" is not 0 or 1", argArray[1]); return -1; } return playerSetPause(fp,pause); -- cgit v1.2.3