mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-22 22:23:29 -07:00
Revert back to C
This commit is contained in:
parent
b2cb5bf541
commit
bd2beb9edc
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ PNUMBER _createnum(_In_ uint32_t size)
|
||||||
PRAT _createrat(void)
|
PRAT _createrat(void)
|
||||||
|
|
||||||
{
|
{
|
||||||
PRAT prat = reinterpret_cast<PRAT>(zmalloc(sizeof(RAT)));
|
PRAT prat = (PRAT)zmalloc(sizeof(RAT));
|
||||||
|
|
||||||
if (prat == nullptr)
|
if (prat == nullptr)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue