1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

braces for 1-line if

This commit is contained in:
bbbradsmith 2023-05-03 14:11:30 -04:00
parent 016008b6df
commit 440c91fad9

View File

@ -861,8 +861,9 @@ static void OneLine (void)
/* Suppress .size Symbol if this Symbol already has a multiply-defined error,
** as it will only create its own additional unnecessary error.
*/
if ((Sym->Flags & SF_MULTDEF) == 0)
if ((Sym->Flags & SF_MULTDEF) == 0) {
DefSizeOfSymbol (Sym, Size);
}
}
/* Line separator must come here */