aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-11-05 11:34:52 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-11-05 11:34:52 +0100
commit24849acada79977cea6acd2d8741d2bd00891ff6 (patch)
tree9b5f6f5cc5dafe5786f54bbd21c4cc29824448e8
parentab9571bbc5f6fb04fd583238a665a7e830fc1397 (diff)
die() on calloc failure
thanks Markus Teich and David!
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index b0612af..fe044fc 100644
--- a/util.c
+++ b/util.c
@@ -12,7 +12,7 @@ ecalloc(size_t nmemb, size_t size)
void *p;
if (!(p = calloc(nmemb, size)))
- perror(NULL);
+ die("calloc:");
return p;
}