From b9e9a125627944dbfaacf50922e58f4900e9c567 Mon Sep 17 00:00:00 2001 From: jsm Date: Fri, 10 Sep 1999 00:18:20 +0000 Subject: Check for write errors in auxiliary programs used during build of games. --- fortune/strfile/strfile.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'fortune/strfile/strfile.c') diff --git a/fortune/strfile/strfile.c b/fortune/strfile/strfile.c index 0d74f4e2..5c8954e1 100644 --- a/fortune/strfile/strfile.c +++ b/fortune/strfile/strfile.c @@ -1,4 +1,4 @@ -/* $NetBSD: strfile.c,v 1.12 1999/09/09 17:30:19 jsm Exp $ */ +/* $NetBSD: strfile.c,v 1.13 1999/09/10 00:18:21 jsm Exp $ */ /*- * Copyright (c) 1989, 1993 @@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\ #if 0 static char sccsid[] = "@(#)strfile.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: strfile.c,v 1.12 1999/09/09 17:30:19 jsm Exp $"); +__RCSID("$NetBSD: strfile.c,v 1.13 1999/09/10 00:18:21 jsm Exp $"); #endif #endif /* not lint */ @@ -256,6 +256,9 @@ main(ac, av) HTOBE64(*p); (void) fwrite((char *) Seekpts, sizeof *Seekpts, (int) Num_pts, outf); } + fflush(outf); + if (ferror(outf)) + err(1, "fwrite %s", Outfile); (void) fclose(outf); exit(0); } -- cgit v1.2.3