]> diplodocus.org Git - nmh/blobdiff - sbr/utils.c
Stop one lseek(2) per header fetched by m_getfld.c in common case.
[nmh] / sbr / utils.c
index f24f00def825f46d8495109e0551f6aa9caac290..4a460762bd035695e4abf5974b4721b4a56ff817 100644 (file)
@@ -56,7 +56,7 @@ mh_xrealloc(void *ptr, size_t size)
         return mh_xmalloc(size);
 
     if (size == 0)
-        adios(NULL, "Tried to realloc 0bytes");
+        adios(NULL, "Tried to realloc 0 bytes");
 
     memory = realloc(ptr, size);
     if (!memory)