Skip to content

Commit 16a0c61

Browse files
committed
fixes #149
1 parent f16f1c9 commit 16a0c61

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/ops.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,8 +1102,9 @@ v_equ(char *str, MNEMONIC *dummy)
11021102
if (lab->value != sym->value)
11031103
{
11041104
asmerr( ERROR_EQU_VALUE_MISMATCH, false, NULL );
1105-
printf("INFO: Label '%s' changed from $%04lx to $%04lx\n",
1106-
Av[0], lab->value, sym->value);
1105+
if ( bTrace )
1106+
printf("INFO: Label '%s' changed from $%04lx to $%04lx\n",
1107+
Av[0], lab->value, sym->value);
11071108
++Redo;
11081109
Redo_why |= REASON_EQU_VALUE_MISMATCH;
11091110
}

0 commit comments

Comments
 (0)