Format tweaks

This commit is contained in:
Ray 2023-10-08 18:10:05 +02:00
parent 97c2744a16
commit be8eea9eda
5 changed files with 9 additions and 11 deletions

View file

@ -447,11 +447,11 @@ int main(int argc, char* argv[])
{
if (isFloat)
{
defines[defineIndex].type = linePtr[j-1] == 'f' ? FLOAT : DOUBLE;
defines[defineIndex].type = (linePtr[j-1] == 'f')? FLOAT : DOUBLE;
}
else
{
defines[defineIndex].type = linePtr[j-1] == 'L' ? LONG : INT;
defines[defineIndex].type = (linePtr[j-1] == 'L')? LONG : INT;
defines[defineIndex].isHex = isHex;
}
}