pinosaur
/
surf.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6af15aa
)
Close standard output after printing XID, patch due Abby Cedar.
author
Troels Henriksen
<athas@sigkill.dk>
Tue, 21 Feb 2012 11:00:01 +0000
(12:00 +0100)
committer
Troels Henriksen
<athas@sigkill.dk>
Tue, 21 Feb 2012 11:00:01 +0000
(12:00 +0100)
surf.c
patch
|
blob
|
history
diff --git
a/surf.c
b/surf.c
index
154957d
..
27cc4e9
100644
(file)
--- a/
surf.c
+++ b/
surf.c
@@
-548,6
+548,9
@@
newclient(void) {
gdk_display_sync(gtk_widget_get_display(c->win));
printf("%u\n", (guint)GDK_WINDOW_XID(GTK_WIDGET(c->win)->window));
fflush(NULL);
+ if (fclose(stdout) != 0) {
+ die("Error closing stdout");
+ }
}
return c;
}