diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-03 02:11:08 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-03 02:11:08 +0000 |
commit | 9204cb24b71e34b13352512f100742192532518b (patch) | |
tree | 4eceafce6ff9434147a0fc48aa31de08381c0cc2 | |
parent | 6f85d8bcf3d54c75c18c6c1f9c8b7766884ef2bb (diff) | |
download | mpd-9204cb24b71e34b13352512f100742192532518b.tar.gz mpd-9204cb24b71e34b13352512f100742192532518b.tar.xz mpd-9204cb24b71e34b13352512f100742192532518b.zip |
forgot a '\n' at the end of a error statement
git-svn-id: https://svn.musicpd.org/mpd/trunk@2490 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/decode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decode.c b/src/decode.c index 2a3170c7b..52923ce87 100644 --- a/src/decode.c +++ b/src/decode.c @@ -115,7 +115,7 @@ int calculateCrossFadeChunks(PlayerControl * pc, AudioFormat * af) { MAXPATHLEN); \ pc->erroredUrl[MAXPATHLEN] = '\0'; \ pc->error = PLAYER_ERROR_AUDIO; \ - ERROR("problems opening audio device while playing \"%s\"", pc->utf8url); \ + ERROR("problems opening audio device while playing \"%s\"\n", pc->utf8url); \ quitDecode(pc,dc); \ return; \ } \ @@ -237,7 +237,7 @@ int decodeSeek(PlayerControl * pc, DecoderControl * dc, OutputBuffer * cb, MAXPATHLEN); \ pc->erroredUrl[MAXPATHLEN] = '\0'; \ pc->error = PLAYER_ERROR_AUDIO; \ - ERROR("problems opening audio device while playing \"%s\"", pc->utf8url); \ + ERROR("problems opening audio device while playing \"%s\"\n", pc->utf8url); \ quitDecode(pc,dc); \ return; \ } \ |