From 4b5cc2c9bc0c21bc19b41d38cc9332c5cbb15731 Mon Sep 17 00:00:00 2001 From: Benedikt Heine Date: Sun, 16 Sep 2018 00:39:06 +0200 Subject: [PATCH] Remove superfluous fflush call The blame reveals commit 820cfe73, which introduced printing of notifications similar to notification_print(). The fflush call is still left over since porting the printfs into their dedicated method. As notification_print() is called after this fflush() call, it's not necessary anymore. --- src/dbus.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dbus.c b/src/dbus.c index fb75b75..b36c702 100644 --- a/src/dbus.c +++ b/src/dbus.c @@ -258,8 +258,6 @@ static struct notification *dbus_message_to_notification(const gchar *sender, GV g_variant_iter_free(iter); } - fflush(stdout); - if (n->actions->count < 1) g_clear_pointer(&n->actions, actions_free);