summary refs log tree commit diff
path: root/bin/gfxx.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-02-07 12:07:01 -0500
committerJune McEnroe <june@causal.agency>2018-02-07 12:07:01 -0500
commitb6409bf711c315bb910346fb4183717add00c843 (patch)
treea2e71f058b88d06b08a7743663dc7b3517942473 /bin/gfxx.c
parentRename title to status in gfcocoa (diff)
downloadsrc-b6409bf711c315bb910346fb4183717add00c843.tar.gz
src-b6409bf711c315bb910346fb4183717add00c843.zip
Exit by returning false from input to gf{b,cocoa}
I haven't built gfb yet, so a fix commit is probably incoming.
Diffstat (limited to 'bin/gfxx.c')
-rw-r--r--bin/gfxx.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/gfxx.c b/bin/gfxx.c
index 9a5fd6cd..84991e0e 100644
--- a/bin/gfxx.c
+++ b/bin/gfxx.c
@@ -348,11 +348,11 @@ static void setPreset(void) {
     }
 }
 
-extern void input(char in) {
+extern bool input(char in) {
     size_t pixel = (BITS_TOTAL + 7) / 8;
     size_t row = width * pixel;
     switch (in) {
-        case 'q': formatOptions(); printf("%s\n", options); exit(EX_OK);
+        case 'q': return false;
         break; case 'o': formatOptions(); printf("%s\n", options);
         break; case '[': if (!space--) space = COLOR__MAX - 1;
         break; case ']': if (++space == COLOR__MAX) space = 0;
@@ -380,4 +380,5 @@ extern void input(char in) {
         break; case '-': if (scale > 1) scale--;
         break; default: if (in >= '0' && in <= '9') setBit(in);
     }
+    return true;
 }