Removed malloc macro

This commit is contained in:
Eduardo Quezada
2022-09-16 20:24:26 -03:00
parent 36494c1c1d
commit 63156b4398
10 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -1627,7 +1627,7 @@ static bool8 InitEasyChatScreenStruct(u8 type, u16 *words, u8 displayedPersonTyp
u8 templateId;
int i;
sEasyChatScreen = malloc(sizeof(*sEasyChatScreen));
sEasyChatScreen = Alloc(sizeof(*sEasyChatScreen));
if (sEasyChatScreen == NULL)
return FALSE;