1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

missing newlines. oops.

svn path=/trunk/icecast/; revision=3319
This commit is contained in:
Michael Smith 2002-05-21 05:22:32 +00:00
parent fd2ee075f6
commit 92bb45ddc7

View File

@ -151,12 +151,12 @@ static int _start_listening(void)
static void _server_proc_init(void)
{
if (!_setup_socket()) {
fprintf(stderr, "Could not create listener socket on port %d", config_get_config()->port);
fprintf(stderr, "Could not create listener socket on port %d\n", config_get_config()->port);
return;
}
if (!_start_listening()) {
fprintf(stderr, "Failed trying to listen on server socket");
fprintf(stderr, "Failed trying to listen on server socket\n");
return;
}
}