Fix for annoying compiler warning complaining about misleading indentation following if conditional.
This commit is contained in:
parent
bf17e53335
commit
33882cb0d7
|
@ -400,9 +400,12 @@ Condition* Term(const char** str)
|
|||
Condition* t1;
|
||||
Condition* mid;
|
||||
|
||||
t = (Condition*)FCEU_dmalloc(sizeof(Condition));
|
||||
if (!t)
|
||||
return NULL;
|
||||
t = (Condition*)FCEU_dmalloc(sizeof(Condition));
|
||||
|
||||
if (!t)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
memset(t, 0, sizeof(Condition));
|
||||
|
||||
|
|
Loading…
Reference in New Issue