Fix coding style.

This commit is contained in:
Kugel Fuhr
2025-06-20 15:55:31 +02:00
parent 49713f73e0
commit 96bb1e4336
5 changed files with 16 additions and 16 deletions

View File

@@ -666,7 +666,7 @@ static void RangeSection (void)
if (InfoSVal[1] == '\0') {
InfoError ("AddrMode must be two characters long");
}
if (tolower(InfoSVal[0]) == 'm') {
if (tolower (InfoSVal[0]) == 'm') {
if (InfoSVal[0] == 'm') {
AddrMode = atMem16;
} else {
@@ -675,7 +675,7 @@ static void RangeSection (void)
} else {
InfoError ("AddrMode syntax: mx");
}
if (tolower(InfoSVal[1]) == 'x') {
if (tolower (InfoSVal[1]) == 'x') {
if (InfoSVal[1] == 'x') {
AddrMode |= atIdx16;
} else {
@@ -735,7 +735,7 @@ static void RangeSection (void)
if (Attributes & tUnit) {
unsigned i;
for (i = Start; i < End; i += Unit) {
MarkAddr(i, atTableUnit);
MarkAddr (i, atTableUnit);
}
}
@@ -928,7 +928,7 @@ void ReadInfoFile (void)
/* Read the info file */
{
/* Check if we have a info file given */
if (InfoAvail()) {
if (InfoAvail ()) {
/* Open the config file */
InfoOpenInput ();