From a27aa46fd0abbb441ffd00239177b4e3899f76be Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 31 Mar 1997 05:33:54 +0000 Subject: [PATCH] Replace incorrect use of stderr with outf_error. --- v7/src/microcode/prgdbm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/microcode/prgdbm.c b/v7/src/microcode/prgdbm.c index aca93b88f..916fc98d6 100644 --- a/v7/src/microcode/prgdbm.c +++ b/v7/src/microcode/prgdbm.c @@ -1,8 +1,8 @@ /* -*-C-*- -$Id: prgdbm.c,v 1.1 1996/04/23 20:36:48 cph Exp $ +$Id: prgdbm.c,v 1.2 1997/03/31 05:33:54 cph Exp $ -Copyright (c) 1996 Massachusetts Institute of Technology +Copyright (c) 1996-97 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -149,8 +149,8 @@ DEFUN (datum_to_object, (d), datum d) static void DEFUN (gdbm_fatal_error, (msg), char * msg) { - fprintf (stderr, "\ngdbm: %s\n", msg); - fflush (stderr); + outf_error ("\ngdbm: %s\n", msg); + outf_flush_error (); error_external_return (); } -- 2.25.1