9 Oct
2017
9 Oct
'17
12:21 p.m.
if (!end1 && !end2) break;
- status = !end1 ^ !end2; + status = !end1 && !end2; ok(!status, "Line %u, test %u: Mismatch in size, test declaration is %s than expected.\n", line, test_id, end1 ? "shorter" : "longer"); if (status)
Doesn't this change the meaning of the code? You could also just make it into "status = FALSE", since when it's true the conditional break is used. Regards, Fabian Maurer