X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fxmalloc.c;h=3796f4e1343dedf97fa83d8328547adbf0de1ea7;hb=a3e65bcd3250b107397675bc65b35b5939355025;hp=179b1437da3db927cf5a21a175919f7dbe72b77e;hpb=88d3bedf772316f87e1996f655ccf8d1e2589755;p=yaz-moved-to-github.git diff --git a/src/xmalloc.c b/src/xmalloc.c index 179b143..3796f4e 100644 --- a/src/xmalloc.c +++ b/src/xmalloc.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2010 Index Data + * Copyright (C) 1995-2012 Index Data * See the file LICENSE for details. */ /** @@ -260,12 +260,12 @@ void *xrealloc_f(void *o, size_t size, const char *file, int line) } if (log_level) - yaz_log (log_level, - "%s:%d: xrealloc(s=%ld) %p -> %p", file, line, (long) size, o, p); + yaz_log(log_level, + "%s:%d: xrealloc(s=%ld) %p -> %p", file, line, (long) size, o, p); if (!p) { - yaz_log (YLOG_FATAL|YLOG_ERRNO, "Out of memory, realloc (%ld bytes)", - (long) size); + yaz_log(YLOG_FATAL|YLOG_ERRNO, "Out of memory, realloc (%ld bytes)", + (long) size); xmalloc_fatal(); } return p;