event_pipe: use GLib logging

This commit is contained in:
Max Kellermann 2009-01-03 14:53:39 +01:00
parent d1c4f261c8
commit b42e10b839

View File

@ -19,8 +19,9 @@
*/
#include "event_pipe.h"
#include "log.h"
#include "utils.h"
#include <stdbool.h>
#include <assert.h>
#include <glib.h>
#include <string.h>
@ -55,7 +56,7 @@ consume_pipe(void)
bool events[PIPE_EVENT_MAX];
if (r < 0 && errno != EAGAIN && errno != EINTR)
FATAL("error reading from pipe: %s\n", strerror(errno));
g_error("error reading from pipe: %s", strerror(errno));
g_mutex_lock(event_pipe_mutex);
memcpy(events, pipe_events, sizeof(events));