Slight change which shoul make MSVC preproccessor happy.

This commit is contained in:
n-a-c-h
2005-02-23 07:24:23 +00:00
parent b7ce28d962
commit 7417c24e23

View File

@@ -144,7 +144,10 @@ void *doMemAlloc(size_t size)
{
void *ptr = NULL;
ptr = malloc(size);
if (!ptr) { asm_call(outofmemory); }
if (!ptr)
{
asm_call(outofmemory);
}
return(ptr);
}