diff options
author | Max Kellermann <max@duempel.org> | 2013-09-03 11:28:47 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-03 11:28:47 +0200 |
commit | 4db119c01b1c9a10a070a2b23a3d43ca2dc722c5 (patch) | |
tree | 3f28777c86cd588df4c29569afe17d0f803fb10b /src/IOThread.hxx | |
parent | bbd711556476d5ef3510678a5e525974821803b2 (diff) | |
download | mpd-4db119c01b1c9a10a070a2b23a3d43ca2dc722c5.tar.gz mpd-4db119c01b1c9a10a070a2b23a3d43ca2dc722c5.tar.xz mpd-4db119c01b1c9a10a070a2b23a3d43ca2dc722c5.zip |
IOThread: use FatalError() on g_thread_create() error
New GLib versions don't fail.
Diffstat (limited to '')
-rw-r--r-- | src/IOThread.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/IOThread.hxx b/src/IOThread.hxx index 8c6f233ab..cfa34a494 100644 --- a/src/IOThread.hxx +++ b/src/IOThread.hxx @@ -22,15 +22,13 @@ #include "gcc.h" -#include <glib.h> - class EventLoop; void io_thread_init(void); -bool -io_thread_start(GError **error_r); +void +io_thread_start(); /** * Run the I/O event loop synchronously in the current thread. This |