From a9360ad3d94ff1bb4264781c5564af476b5d1af6 Mon Sep 17 00:00:00 2001 From: Sascha Kruse Date: Mon, 18 Feb 2013 07:43:12 +0000 Subject: [PATCH] remove debugging printfs --- dunst.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dunst.c b/dunst.c index be0e1fe..61ee65a 100644 --- a/dunst.c +++ b/dunst.c @@ -148,7 +148,6 @@ x11_fd_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) XEvent ev; while (XPending(dpy) > 0) { - printf("dispatching xevent\n"); XNextEvent(dpy, &ev); switch (ev.type) { case Expose: @@ -1346,8 +1345,6 @@ void update(void) now = time(&now); - printf("updating (%d)\n", now); - /* move messages from notification_queue to displayed_notifications */ update_lists(); if (displayed->length > 0 && ! visible) { @@ -1358,10 +1355,6 @@ void update(void) } if (visible && (force_redraw || now - last_redraw > 0)) { - if (force_redraw) - printf("forced_redraw\n"); - if (now - last_redraw > 0) - printf("last_redraw too old\n"); draw_win(); force_redraw = false; last_redraw = now;