diff --git a/programs/util.c b/programs/util.c index fd31ee9e1..f7436be54 100644 --- a/programs/util.c +++ b/programs/util.c @@ -91,8 +91,10 @@ int UTIL_requireUserConfirmation(const char* prompt, const char* abortMsg, const char* acceptableLetters, int hasStdinInput) { int ch, result; - if (hasStdinInput) + if (hasStdinInput) { + UTIL_DISPLAY("Stdin is an input - not proceeding.\n"); return 1; + } UTIL_DISPLAY("%s", prompt); ch = getchar();