Commit 189153ed authored by Russ Cox's avatar Russ Cox

fix error that gcc thinks is a warning

R=ken
OCL=32264
CL=32386
parent 123ff2eb
......@@ -618,7 +618,7 @@ bgen(Node *n, int true, Prog *to)
nr = n->right;
if(n->type == T) {
convlit(n, types[TBOOL]);
convlit(&n, types[TBOOL]);
if(n->type == T)
goto ret;
}
......
......@@ -683,7 +683,7 @@ bgen(Node *n, int true, Prog *to)
nr = n->right;
if(n->type == T) {
convlit(n, types[TBOOL]);
convlit(&n, types[TBOOL]);
if(n->type == T)
return;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment