# | Line 161 | Line 161 | incr_counter(uby8 *ctrp, int n) | |
---|---|---|
161 | { | |
162 | n = tree_br[n].cntr_siz; | |
163 | ||
164 | < | while (++(*ctrp++)) /* LSB first */ |
164 | > | while (! ++(*ctrp++)) /* LSB first */ |
165 | if (--n <= 0) { | |
166 | fputs("Shuffle occupancy overflow!\n", stderr); | |
167 | exit(1); /* means we sized something wrong */ | |
# | Line 287 | Line 287 | main(int argc, char *argv[]) | |
287 | n[a] = 0; | |
288 | if (!a) | |
289 | goto userr; | |
290 | < | |
290 | > | #ifdef getc_unlocked |
291 | > | flockfile(stdout); /* avoid overhead */ |
292 | > | #endif |
293 | if (doshuffle) | |
294 | shuffle(n); | |
295 | else |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |