summaryrefslogtreecommitdiff
path: root/slstatus.c
diff options
context:
space:
mode:
authorLaslo Hunhold <dev@frign.de>2018-05-22 12:50:43 +0200
committerAaron Marcher <me@drkhsh.at>2018-05-22 13:25:47 +0200
commit9c9ce8a125f35bab61c829bdd58bdf77b8352d5e (patch)
tree8b125c59ae63b8f99d5e79266c7cee63e5cb7886 /slstatus.c
parent825f637e20e98901447825ac44aa24859083fe00 (diff)
Check printf() for output errors
This way cases like $ slstatus -s > /dev/full are properly caught and the program terminated with the proper return code.
Diffstat (limited to 'slstatus.c')
-rw-r--r--slstatus.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/slstatus.c b/slstatus.c
index b3abafb..9bd9e81 100644
--- a/slstatus.c
+++ b/slstatus.c
@@ -102,7 +102,9 @@ main(int argc, char *argv[])
}
if (sflag) {
- printf("%s\n", status);
+ if (printf("%s\n", status) < 0) {
+ die("printf:");
+ }
} else {
if (XStoreName(dpy, DefaultRootWindow(dpy), status) < 0) {
die("XStoreName: Allocation failed");