long clap

This commit is contained in:
The Arrayser 2022-08-27 19:55:26 +02:00 committed by GitHub
parent b87ecabe41
commit b1b6f01422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ void * sus_heapAlloc(size_t bytes){
// returns NULL, if there is no memroy left or an error occured
void * sus_heapResize(void * memroy, size_t newBytes){
HeapReAlloc(GetProcessHeap(), 0, memroy, newBytes);
return HeapReAlloc(GetProcessHeap(), 0, memroy, newBytes);
}
// what should this function do, if an error occurse..