X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=adu.h;h=775af7faef3c85bfc3890e87426b044f161a552b;hp=1e6519bc91c12fb6a03307042de9c56f97c1c92b;hb=f732616f8be8b2c8b4137108faa25eeaccb77499;hpb=694171759afb90bfdc552676ff6d04697c93af00 diff --git a/adu.h b/adu.h index 1e6519b..775af7f 100644 --- a/adu.h +++ b/adu.h @@ -107,7 +107,7 @@ __printf_2_3 void __log(int, const char*, ...); { \ int n; \ size_t size = 100; \ - p = para_malloc(size); \ + p = adu_malloc(size); \ while (1) { \ va_list ap; \ /* Try to print in the allocated space. */ \ @@ -122,6 +122,6 @@ __printf_2_3 void __log(int, const char*, ...); size = n + 1; /* precisely what is needed */ \ else /* glibc 2.0 */ \ size *= 2; /* twice the old size */ \ - p = para_realloc(p, size); \ + p = adu_realloc(p, size); \ } \ }