X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=zone.c;h=a5bb4f0f750d8b0869cc0a67273d6fbdf515fc97;hp=3549f7001f709849f98f6c01b8b09d27a35d6055;hb=15f74b0989186c26df4bbf0f2ea6c5b095e74269;hpb=dd1a3ca18abf488c754c837765ad27cd0c1082c8 diff --git a/zone.c b/zone.c index 3549f700..a5bb4f0f 100644 --- a/zone.c +++ b/zone.c @@ -417,7 +417,7 @@ void *Hunk_AllocName (int size, char *name) size = sizeof(hunk_t) + ((size+15)&~15); if (hunk_size - hunk_low_used - hunk_high_used < size) - Sys_Error ("Hunk_Alloc: failed on %i bytes",size); + Sys_Error ("Hunk_Alloc: failed on %i bytes (name = %s)",size, name); h = (hunk_t *)(hunk_base + hunk_low_used); hunk_low_used += size;