diff options
author | 2003-11-09 20:33:09 +0000 | |
---|---|---|
committer | 2003-11-09 20:33:09 +0000 | |
commit | c28ec47fdd976e8012ce22f59bb8354ac33a9b64 (patch) | |
tree | cf3a737256ae23445a03b8324c938c2352f94e87 | |
parent | Typos in comments from Jared Yanovich <jjy2+ at pitt dot edu> (diff) | |
download | wireguard-openbsd-c28ec47fdd976e8012ce22f59bb8354ac33a9b64.tar.xz wireguard-openbsd-c28ec47fdd976e8012ce22f59bb8354ac33a9b64.zip |
Flush after 'n' operator.
-rw-r--r-- | usr.bin/dc/bcode.c | 5 |
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); } } |