X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/2a4e2f15af1a697152104af8f46f0ba6aab472ff..c576ad2674c37a1c63f004c71049998f38854c64:/sbr/read_yes_or_no_if_tty.c diff --git a/sbr/read_yes_or_no_if_tty.c b/sbr/read_yes_or_no_if_tty.c index 2427f59c..93484e4e 100644 --- a/sbr/read_yes_or_no_if_tty.c +++ b/sbr/read_yes_or_no_if_tty.c @@ -16,5 +16,5 @@ read_yes_or_no_if_tty (const char *prompt) if (interactive < 0) interactive = isatty (fileno (stdin)); - return (interactive ? read_switch (prompt, anoyes) : 1); + return interactive ? read_switch(prompt, anoyes) : 1; }