diff --git a/src/scrut.c b/src/scrut.c index f708eb5..a0ee93d 100644 --- a/src/scrut.c +++ b/src/scrut.c @@ -59,10 +59,9 @@ int main(int argc, char *argv[]) { /* straighten out ops */ for (i = 0, p = ops; i < (sizeof ops) / (sizeof *ops); ++i) { - if(ops[i] != '\0'){ + if (ops[i] != '\0') { *p = ops[i]; - if(&ops[i] != p++) - ops[i] = '\0'; + if (&ops[i] != p++) { ops[i] = '\0'; } } }