1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 06:25:17 +00:00

Rearrange the code to avoid a warning from the Watcom compiler.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5922 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2012-11-06 20:41:02 +00:00
parent aad6cd2a14
commit 38e185d15d
2 changed files with 5 additions and 5 deletions

View File

@@ -82,9 +82,9 @@ static enum Mode GetMode (const Collection* A)
} else { } else {
Error ("Invalid value for attribute `mode'"); Error ("Invalid value for attribute `mode'");
} }
} else {
return smAuto;
} }
return smAuto;
} }

View File

@@ -83,9 +83,9 @@ static enum Mode GetMode (const Collection* A)
} else { } else {
Error ("Invalid value for attribute `mode'"); Error ("Invalid value for attribute `mode'");
} }
} else { }
return smAuto;
} return smAuto;
} }