Added parens

git-svn-id: svn://svn.cc65.org/cc65/trunk@2591 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-10-31 16:44:20 +00:00
parent cba152f777
commit 8abe61a32f

View File

@@ -95,7 +95,7 @@ static const char* GetAbsOverride (unsigned Flags, unsigned Addr)
* string, otherwise return the empty string. * string, otherwise return the empty string.
*/ */
{ {
if (Flags & flAbsOverride && Addr < 0x100) { if ((Flags & flAbsOverride) != 0 && Addr < 0x100) {
return "a:"; return "a:";
} else { } else {
return ""; return "";