david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

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
1 changed files with 2 additions and 0 deletions

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;
}