Added parens
git-svn-id: svn://svn.cc65.org/cc65/trunk@2591 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -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 "";
|
||||||
|
|||||||
Reference in New Issue
Block a user