X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/682c0fedde04fe6713539726494ec2db67ba5d2a..10bdf01b715dcc994f3fe32a6881d5e0b2613a6c:/slstatus.c diff --git a/slstatus.c b/slstatus.c index 7776fd5..96fa5b6 100644 --- a/slstatus.c +++ b/slstatus.c @@ -73,10 +73,6 @@ main(int argc, char *argv[]) sigaction(SIGINT, &act, NULL); sigaction(SIGTERM, &act, NULL); - if (sflag) { - setbuf(stdout, NULL); - } - if (!sflag && !(dpy = XOpenDisplay(NULL))) { die("XOpenDisplay: Failed to open display"); } @@ -99,11 +95,13 @@ main(int argc, char *argv[]) } if (sflag) { - if (printf("%s\n", status) < 0) { - die("printf:"); - } + puts(status); + fflush(stdout); + if (ferror(stdout)) + die("puts:"); } else { - if (XStoreName(dpy, DefaultRootWindow(dpy), status) < 0) { + if (XStoreName(dpy, DefaultRootWindow(dpy), status) + < 0) { die("XStoreName: Allocation failed"); } XFlush(dpy);