From: Thomas Ferrin Date: Fri, 11 Sep 1987 00:22:01 +0000 (-0800) Subject: flush stdout before calling stderr X-Git-Tag: BSD-4_3_Net_1-Snapshot-Development~3753 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/816cd0ca8c15b091bd75bd198039a05abcc9b331 flush stdout before calling stderr SCCS-vsn: sbin/disklabel/disklabel.c 5.10 --- diff --git a/usr/src/sbin/disklabel/disklabel.c b/usr/src/sbin/disklabel/disklabel.c index 09fd84271d..b61cc7ca26 100644 --- a/usr/src/sbin/disklabel/disklabel.c +++ b/usr/src/sbin/disklabel/disklabel.c @@ -5,7 +5,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)disklabel.c 5.9 (Berkeley) %G%"; +static char sccsid[] = "@(#)disklabel.c 5.10 (Berkeley) %G%"; /* from static char sccsid[] = "@(#)disklabel.c 1.2 (Symmetric) 11/28/85"; */ #endif @@ -419,6 +419,7 @@ display(f, lp) fprintf(f, ")\n"); } } + fflush(f); } edit(lp)