Fix issue where !x was actually calculating !!x.

This commit is contained in:
David Given 2016-12-31 00:14:04 +00:00
parent 462529a7d2
commit fa02a855e8

View file

@ -291,7 +291,7 @@ rcexpr(struct tnode *tr)
case EXCLA: case EXCLA:
rcexpr(tr->tr1); rcexpr(tr->tr1);
C_tne(); C_teq();
return; return;
case NEG: case NEG: