summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/xcalloc.c
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-15 01:55:00 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-15 01:55:00 +0000
commitff95b300f8204c215384425032124f206349bca2 (patch)
treeabdb4fced025cb35b974f9f0ba0c7d6c9fd01094 /Build/source/texk/kpathsea/xcalloc.c
parent64252d2baf23bb55ca90c388215779740c73e695 (diff)
remove trailing spaces.
git-svn-id: svn://tug.org/texlive/trunk@18276 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/xcalloc.c')
-rw-r--r--Build/source/texk/kpathsea/xcalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/xcalloc.c b/Build/source/texk/kpathsea/xcalloc.c
index 9e1fd9dcb86..aca15548a53 100644
--- a/Build/source/texk/kpathsea/xcalloc.c
+++ b/Build/source/texk/kpathsea/xcalloc.c
@@ -23,13 +23,13 @@ void *
xcalloc (size_t nelem, size_t elsize)
{
void *new_mem = (void*)calloc(nelem ? nelem : 1, elsize ? elsize : 1);
-
+
if (new_mem == NULL) {
fprintf(stderr,
"xcalloc: request for %lu elements of size %lu failed.\n",
(unsigned long)nelem, (unsigned long)elsize);
exit(EXIT_FAILURE);
}
-
+
return new_mem;
}