2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-11-22 17:41:55 +00:00

Add an explicit failure debug message

This commit is contained in:
Michael Brown 2006-04-28 14:07:41 +00:00
parent 084f6b18f7
commit 51feeab445

View File

@ -123,6 +123,8 @@ void * alloc_memblock ( size_t size, size_t align ) {
return block;
}
}
DBG ( "Failed to allocate %z (aligned %zx)\n", size, align );
return NULL;
}