diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-13 21:01:14 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-13 21:01:14 +0200 |
commit | 782d988a88582a0f3dd6539664d535fb790df024 (patch) | |
tree | fa8d1bc22b6f96611111794bb2a9caf016a5e728 /protocols/events_glib.c | |
parent | 309cb9e19395261d020f7ea649807ff1adbe76de (diff) |
libevent code works better with epoll() now in some (pretty common) situations.
Diffstat (limited to 'protocols/events_glib.c')
-rw-r--r-- | protocols/events_glib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/events_glib.c b/protocols/events_glib.c index 01265fd8..ff6e5a74 100644 --- a/protocols/events_glib.c +++ b/protocols/events_glib.c @@ -130,7 +130,7 @@ gint b_timeout_add(gint timeout, b_event_handler func, gpointer data) void b_event_remove(gint tag) { - event_debug( "g_source_remove( %d )\n", tag ); + event_debug( "b_event_remove( %d )\n", tag ); if (tag > 0) g_source_remove(tag); |