adding \n to a bunch of error message strings

git-svn-id: https://svn.musicpd.org/mpd/trunk@6826 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman
2007-08-27 21:03:22 +00:00
parent f18e524176
commit 8d89add8e7
5 changed files with 8 additions and 8 deletions

View File

@@ -267,7 +267,7 @@ static int connect_jack(AudioOutput *audioOutput)
jack_on_shutdown(jd->client, shutdown_callback, (void *)jd);
if ( jack_activate(jd->client) ) {
ERROR("cannot activate client");
ERROR("cannot activate client\n");
freeJackData(audioOutput);
return -1;
}
@@ -312,7 +312,7 @@ static int connect_jack(AudioOutput *audioOutput)
sprintf(port_name, "%s:left", name);
if ( (jack_connect(jd->client, port_name,
output_ports[0])) != 0 ) {
ERROR("%s is not a valid Jack Client / Port ",
ERROR("%s is not a valid Jack Client / Port\n",
output_ports[0]);
freeJackData(audioOutput);
free(port_name);
@@ -321,7 +321,7 @@ static int connect_jack(AudioOutput *audioOutput)
sprintf(port_name, "%s:right", name);
if ( (jack_connect(jd->client, port_name,
output_ports[1])) != 0 ) {
ERROR("%s is not a valid Jack Client / Port ",
ERROR("%s is not a valid Jack Client / Port\n",
output_ports[1]);
freeJackData(audioOutput);
free(port_name);

View File

@@ -377,7 +377,7 @@ static int oss_open_default(AudioOutput *ao, ConfigParam *param, OssData *od)
ERROR("%s: permission denied\n", dev);
break;
default:
ERROR("Error accessing %s: %s", dev, strerror(err[i]));
ERROR("Error accessing %s: %s\n", dev, strerror(err[i]));
}
}
exit(EXIT_FAILURE);