cff065fc5f
problems with some Qt apps (upstream git commit 2d14ced024416e2074b57290bf7dade7d08899e5) Bugfix: either use SetInputFocus *or* send WM_TAKE_FOCUS, not both. This fixes problems with Oracle/OpenJDK JRE 7.0 (upstream git commit 21a2971b2442ab0881cf79553cc6b65bbb44afa7)
22 lines
726 B
Plaintext
22 lines
726 B
Plaintext
$OpenBSD: patch-i3bar_src_child_c,v 1.2 2012/01/20 15:53:18 dcoppa Exp $
|
|
--- i3bar/src/child.c.orig Sat Dec 24 16:25:08 2011
|
|
+++ i3bar/src/child.c Fri Jan 20 15:17:47 2012
|
|
@@ -80,7 +80,6 @@ void stdin_io_cb(struct ev_loop *loop, ev_io *watcher,
|
|
}
|
|
|
|
/* end of file, kill the watcher */
|
|
- ELOG("stdin: received EOF\n");
|
|
cleanup();
|
|
draw_bars();
|
|
return;
|
|
@@ -113,9 +112,6 @@ void stdin_io_cb(struct ev_loop *loop, ev_io *watcher,
|
|
*
|
|
*/
|
|
void child_sig_cb(struct ev_loop *loop, ev_child *watcher, int revents) {
|
|
- ELOG("Child (pid: %d) unexpectedly exited with status %d\n",
|
|
- child_pid,
|
|
- watcher->rstatus);
|
|
cleanup();
|
|
}
|
|
|