From: Ralph Corderoy Date: Fri, 15 Sep 2017 21:58:59 +0000 (+0100) Subject: Invert ternary condition to remove one negative. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/4d0110006d4e72f82fb597f170c7d9991f2ca0bf?ds=inline;hp=4d0110006d4e72f82fb597f170c7d9991f2ca0bf Invert ternary condition to remove one negative. Replaces `i != NOTOK ? OK : NOTOK' with `i == NOTOK ? NOTOK : OK'. ---