From a20d03fb150a6c0e81555a77cf52e1c039b5c9de Mon Sep 17 00:00:00 2001 From: "Enno Boland (tox)" Date: Tue, 8 Sep 2009 00:00:43 +0200 Subject: [PATCH] adding fflush() --- surf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/surf.c b/surf.c index b739acd..139c25b 100644 --- a/surf.c +++ b/surf.c @@ -444,8 +444,10 @@ newclient(void) { c->title = NULL; c->next = clients; clients = c; - if(showxid) + if(showxid) { printf("%u\n", (guint)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window)); + fflush(NULL); + } return c; } -- 2.20.1