summaryrefslogtreecommitdiff
path: root/src/xine-engine/broadcaster.c
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2009-12-01 01:33:30 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2009-12-01 01:33:30 +0000
commit0788850a343aedac79b5db636e99a8545bb4214e (patch)
tree3f955ec31e3d1648ef228f6a6d8b6271a2e9efe0 /src/xine-engine/broadcaster.c
parent08a01b18e3d6195471a6b51614feeef557eca081 (diff)
downloadxine-lib-0788850a343aedac79b5db636e99a8545bb4214e.tar.gz
xine-lib-0788850a343aedac79b5db636e99a8545bb4214e.tar.bz2
Fork failure messages shouldn't be debug-only.
Diffstat (limited to 'src/xine-engine/broadcaster.c')
-rw-r--r--src/xine-engine/broadcaster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-engine/broadcaster.c b/src/xine-engine/broadcaster.c
index 22390459e..a554337a3 100644
--- a/src/xine-engine/broadcaster.c
+++ b/src/xine-engine/broadcaster.c
@@ -343,7 +343,7 @@ broadcaster_t *_x_init_broadcaster(xine_stream_t *stream, int port)
this->running = 1;
if ((err = pthread_create (&this->manager_thread,
NULL, manager_loop, (void *)this)) != 0) {
- xprintf (stream->xine, XINE_VERBOSITY_DEBUG,
+ xprintf (stream->xine, XINE_VERBOSITY_NONE,
"broadcaster: can't create new thread (%s)\n", strerror(err));
_x_abort();
}