summaryrefslogtreecommitdiff
path: root/src/glib-integration.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/glib-integration.cpp')
-rw-r--r--src/glib-integration.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glib-integration.cpp b/src/glib-integration.cpp
index 491c950..ac2bb27 100644
--- a/src/glib-integration.cpp
+++ b/src/glib-integration.cpp
@@ -87,7 +87,7 @@ struct BusSource
static gboolean watch_prepare(GSource *source, gint *timeout)
{
- //debug_log("glib: watch_prepare");
+ debug_log("glib: watch_prepare");
*timeout = -1;
return FALSE;
@@ -95,7 +95,7 @@ static gboolean watch_prepare(GSource *source, gint *timeout)
static gboolean watch_check(GSource *source)
{
- //debug_log("glib: watch_check");
+ debug_log("glib: watch_check");
BusSource *io = (BusSource *)source;
return io->poll.revents ? TRUE : FALSE;