Fixed a dumb error in windows/alloc.c.

This commit is contained in:
Pietro Gagliardi 2015-05-16 22:54:43 -04:00
parent b66de79fec
commit 954e60ceaf
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ void *uiRealloc(void *p, size_t size, const char *type)
fprintf(stderr, "memory exhausted in uiRealloc()\n"); fprintf(stderr, "memory exhausted in uiRealloc()\n");
abort(); abort();
} }
return out; return DATA(out);
} }
void uiFree(void *p) void uiFree(void *p)