summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2003-11-09 20:33:09 +0000
committerotto <otto@openbsd.org>2003-11-09 20:33:09 +0000
commitc28ec47fdd976e8012ce22f59bb8354ac33a9b64 (patch)
treecf3a737256ae23445a03b8324c938c2352f94e87
parentTypos in comments from Jared Yanovich <jjy2+ at pitt dot edu> (diff)
downloadwireguard-openbsd-c28ec47fdd976e8012ce22f59bb8354ac33a9b64.tar.xz
wireguard-openbsd-c28ec47fdd976e8012ce22f59bb8354ac33a9b64.zip
Flush after 'n' operator.
-rw-r--r--usr.bin/dc/bcode.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/dc/bcode.c b/usr.bin/dc/bcode.c
index 72d6cc8efc5..73846edf291 100644
--- a/usr.bin/dc/bcode.c
+++ b/usr.bin/dc/bcode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcode.c,v 1.14 2003/11/06 19:48:13 otto Exp $ */
+/* $OpenBSD: bcode.c,v 1.15 2003/11/09 20:33:09 otto Exp $ */
/*
* Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
@@ -17,7 +17,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: bcode.c,v 1.14 2003/11/06 19:48:13 otto Exp $";
+static const char rcsid[] = "$OpenBSD: bcode.c,v 1.15 2003/11/09 20:33:09 otto Exp $";
#endif /* not lint */
#include <ssl/ssl.h>
@@ -489,6 +489,7 @@ pop_printn(void)
if (value != NULL) {
print_value(stdout, value, "", bmachine.obase);
+ fflush(stdout);
stack_free_value(value);
}
}