diff --git a/src/syncterm/term.c b/src/syncterm/term.c index 2b049022cbab62bb924464fe19e042d92da0ddde..b1026da69738657f22d3cd3f62a5a45e4b55de8e 100644 --- a/src/syncterm/term.c +++ b/src/syncterm/term.c @@ -1218,6 +1218,7 @@ transfer_complete(bool success, bool was_binary) lprintf(LOG_NOTICE, "Hit any key or wait %u seconds to continue...", timeout); while (timeout > 0) { if (kbhit()) { + /* coverity[cond_const:FALSE] */ if (getch() == (CIO_KEY_QUIT & 0xff)) { if ((getch() << 8) == (CIO_KEY_QUIT & 0xff00)) check_exit(false);