Revert back to C

This commit is contained in:
Alfonso Gregory 2021-07-12 11:20:29 -04:00 committed by GitHub
commit bd2beb9edc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -230,7 +230,7 @@ PNUMBER _createnum(_In_ uint32_t size)
PRAT _createrat(void)
{
PRAT prat = reinterpret_cast<PRAT>(zmalloc(sizeof(RAT)));
PRAT prat = (PRAT)zmalloc(sizeof(RAT));
if (prat == nullptr)
{