Fix missed fflush in displaysextitem() - sacc - sacc(omys), simple console gopher client | |
git clone git://bitreich.org/sacc/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/sacc/ | |
Log | |
Files | |
Refs | |
Tags | |
LICENSE | |
--- | |
commit 4b108fa359dcfaa9750edd8733750edd3c088c82 | |
parent bc83c52d4404f6eaf306c13fb18bd88073896f11 | |
Author: Quentin Rameau | |
Date: Mon, 10 Jul 2017 18:43:00 +0200 Fix missed fflush in displaysextitem() Diffstat: M sacc.c | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) --- | |
diff --git a/sacc.c b/sacc.c | |
@@ -150,6 +150,7 @@ displaytextitem(Item *item) fputs(item->raw, pagerin); status = pclose(pagerin); fputs("[ Press Enter to continue ]", stdout); + fflush(stdout); getchar(); exit(status); default: |