summaryrefslogtreecommitdiffstats
path: root/monop/monop.c
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2000-01-09 17:17:19 +0000
committerjsm <jsm@NetBSD.org>2000-01-09 17:17:19 +0000
commite55a4c69ad6dfa55e6a3262864f6dce13f495ba3 (patch)
treefcc3c3ed9fdd3560794ac0b86a6a63aae5d49e76 /monop/monop.c
parente52594208cfeed7af6be03a9000f99c31d0f403d (diff)
downloadbsdgames-darwin-e55a4c69ad6dfa55e6a3262864f6dce13f495ba3.tar.gz
bsdgames-darwin-e55a4c69ad6dfa55e6a3262864f6dce13f495ba3.tar.zst
bsdgames-darwin-e55a4c69ad6dfa55e6a3262864f6dce13f495ba3.zip
Use err(1, NULL) and warn(NULL) for `out of memory' error messages.
Diffstat (limited to 'monop/monop.c')
-rw-r--r--monop/monop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/monop/monop.c b/monop/monop.c
index 289f2b12..31743f19 100644
--- a/monop/monop.c
+++ b/monop/monop.c
@@ -1,4 +1,4 @@
-/* $NetBSD: monop.c,v 1.9 1999/09/12 09:02:22 jsm Exp $ */
+/* $NetBSD: monop.c,v 1.10 2000/01/09 17:17:20 jsm Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)monop.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: monop.c,v 1.9 1999/09/12 09:02:22 jsm Exp $");
+__RCSID("$NetBSD: monop.c,v 1.10 2000/01/09 17:17:20 jsm Exp $");
#endif
#endif /* not lint */
@@ -120,7 +120,7 @@ blew_it:
}
cur_p = play = (PLAY *) calloc(num_play, sizeof (PLAY));
if (play == NULL)
- errx(1, "out of memory");
+ err(1, NULL);
for (i = 0; i < num_play; i++) {
over:
printf("Player %d's name: ", i + 1);
@@ -131,7 +131,7 @@ over:
*sp++ = '\0';
name_list[i] = play[i].name = (char *)calloc(1, sp - buf);
if (name_list[i] == NULL)
- errx(1, "out of memory");
+ err(1, NULL);
strcpy(play[i].name, buf);
play[i].money = 1500;
}