force line-buffered stdout if stdout is not a tty
This commit is contained in:
parent
c70db2d06a
commit
deb48ff48b
1 changed files with 3 additions and 1 deletions
4
dwl.c
4
dwl.c
|
@ -1674,7 +1674,6 @@ printstatus(void)
|
|||
sel, urg);
|
||||
printf("%s layout %s\n", m->wlr_output->name, m->lt[m->sellt]->symbol);
|
||||
}
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1943,6 +1942,9 @@ setsel(struct wl_listener *listener, void *data)
|
|||
void
|
||||
setup(void)
|
||||
{
|
||||
/* Force line-buffered stdout */
|
||||
setvbuf(stdout, NULL, _IOLBF, 0);
|
||||
|
||||
/* The Wayland display is managed by libwayland. It handles accepting
|
||||
* clients from the Unix socket, manging Wayland globals, and so on. */
|
||||
dpy = wl_display_create();
|
||||
|
|
Loading…
Reference in a new issue