From 6ad0d2ab4a474867d45889ff5e7474e9cc9097ac Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 29 Jan 2009 19:24:34 +0000 Subject: Nuke debugging. --- xmalloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmalloc.c') diff --git a/xmalloc.c b/xmalloc.c index 68861c2c..986a017f 100644 --- a/xmalloc.c +++ b/xmalloc.c @@ -1,4 +1,4 @@ -/* $Id: xmalloc.c,v 1.7 2009-01-14 19:29:32 nicm Exp $ */ +/* $Id: xmalloc.c,v 1.8 2009-01-29 19:24:34 nicm Exp $ */ /* * Copyright (c) 2004 Nicholas Marriott @@ -44,7 +44,7 @@ xcalloc(size_t nmemb, size_t size) void *ptr; if (size == 0 || nmemb == 0) - { abort();fatalx("zero size");} + fatalx("zero size"); if (SIZE_MAX / nmemb < size) fatalx("nmemb * size > SIZE_MAX"); if ((ptr = calloc(nmemb, size)) == NULL) -- cgit