From 11c23c1f97eefd5f748469d4c88b8c67e95a93dd Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Wed, 7 Feb 2018 12:07:01 -0500 Subject: Exit by returning false from input to gf{b,cocoa} I haven't built gfb yet, so a fix commit is probably incoming. --- bin/gfxx.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin/gfxx.c') diff --git a/bin/gfxx.c b/bin/gfxx.c index e70dffb4..051d4591 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; } -- cgit 1.4.1