summaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorGravatar Hiltjo Posthuma 2016-11-05 11:36:42 +0100
committerGravatar Hiltjo Posthuma 2016-11-05 11:36:42 +0100
commita280bdad1f16943a70eaff086852d3b11043b060 (patch)
tree2bf252af1ed8f39294a7963d29239590a67a8bad /util.c
parentadd embedding support with -w option (diff)
die() on calloc failure
thanks Markus Teich and David!
Diffstat (limited to '')
-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;
}