summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/xmalloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/kpathsea/xmalloc.c')
-rw-r--r--Build/source/texk/kpathsea/xmalloc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/kpathsea/xmalloc.c b/Build/source/texk/kpathsea/xmalloc.c
index 70871a5ae14..65a0d2d0ca2 100644
--- a/Build/source/texk/kpathsea/xmalloc.c
+++ b/Build/source/texk/kpathsea/xmalloc.c
@@ -1,6 +1,6 @@
/* xmalloc.c: malloc with error checking.
- Copyright 1992, 1993, 2008 Karl Berry.
+ Copyright 1992, 1993, 2008, 2010 Karl Berry.
Copyright 2005 Olaf Weber.
This library is free software; you can redistribute it and/or
@@ -20,13 +20,13 @@
void *
-xmalloc (unsigned size)
+xmalloc (size_t size)
{
void *new_mem = (void *)malloc(size ? size : 1);
if (new_mem == NULL) {
- fprintf(stderr, "fatal: memory exhausted (xmalloc of %u bytes).\n",
- size);
+ fprintf(stderr, "fatal: memory exhausted (xmalloc of %lu bytes).\n",
+ (unsigned long)size);
exit(EXIT_FAILURE);
}