diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2006-05-20 20:07:15 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2006-05-20 20:07:15 +0000 |
commit | 7b35cfe2ac9cf6a52d0baccb8f1f52d468285476 (patch) | |
tree | 7b6c9839a8ff3fd02c603aaae1b325deb1ae1525 | |
parent | acc620bbdaf01856b1d20a5c44cf349ec7bee9a5 (diff) | |
download | mpd-7b35cfe2ac9cf6a52d0baccb8f1f52d468285476.tar.gz mpd-7b35cfe2ac9cf6a52d0baccb8f1f52d468285476.tar.xz mpd-7b35cfe2ac9cf6a52d0baccb8f1f52d468285476.zip |
Remove superfluous \n from addid's commandError call.
git-svn-id: https://svn.musicpd.org/mpd/trunk@4208 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/playlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist.c b/src/playlist.c index b41cfcc4c..7c9e0f4fb 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -634,7 +634,7 @@ int addToPlaylist(FILE * fp, char * url, int printId) { else { commandError(fp, ACK_ERROR_NO_EXIST, "\"%s\" is not in the music db or is " - "not a valid url\n", url); + "not a valid url", url); return -1; } |