diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-08-27 21:03:22 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-08-27 21:03:22 +0000 |
commit | 8d89add8e78d32b14df151e4b2825545b9be3e45 (patch) | |
tree | 101a14f1cbc8de2cb7345f8ad2030e5e0e3879e6 /src/inputPlugins | |
parent | f18e52417639518545ebce3649f3ce3450bcb01c (diff) | |
download | mpd-8d89add8e78d32b14df151e4b2825545b9be3e45.tar.gz mpd-8d89add8e78d32b14df151e4b2825545b9be3e45.tar.xz mpd-8d89add8e78d32b14df151e4b2825545b9be3e45.zip |
adding \n to a bunch of error message strings
git-svn-id: https://svn.musicpd.org/mpd/trunk@6826 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugins')
-rw-r--r-- | src/inputPlugins/mpc_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/mpc_plugin.c b/src/inputPlugins/mpc_plugin.c index 885f6cfc9..25cb678b6 100644 --- a/src/inputPlugins/mpc_plugin.c +++ b/src/inputPlugins/mpc_plugin.c @@ -158,7 +158,7 @@ static int mpc_decode(OutputBuffer * cb, DecoderControl * dc, if ((ret = mpc_streaminfo_read(&info, &reader)) != ERROR_CODE_OK) { closeInputStream(inStream); if (!dc->stop) { - ERROR("Not a valid musepack stream"); + ERROR("Not a valid musepack stream\n"); return -1; } else { dc->state = DECODE_STATE_STOP; @@ -172,7 +172,7 @@ static int mpc_decode(OutputBuffer * cb, DecoderControl * dc, if (!mpc_decoder_initialize(&decoder, &info)) { closeInputStream(inStream); if (!dc->stop) { - ERROR("Not a valid musepack stream"); + ERROR("Not a valid musepack stream\n"); } else { dc->state = DECODE_STATE_STOP; dc->stop = 0; |