Skip to content

Commit 47106ce

Browse files
committed
tccgen.c: silence logical op warning
behavior is unchanged
1 parent 8f23997 commit 47106ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tccgen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ static void move_ref_to_global(Sym *s)
13301330
if (!(bt == VT_PTR
13311331
|| bt == VT_FUNC
13321332
|| bt == VT_STRUCT
1333-
|| (IS_ENUM(s->type.t)) && (bt = VT_ENUM,1)))
1333+
|| ((IS_ENUM(s->type.t)) && (bt = VT_ENUM,1))))
13341334
return;
13351335

13361336
for (s = s->type.ref, n = 0; s; s = s->next) {

0 commit comments

Comments
 (0)