--- jsr166/src/jsr166e/ForkJoinPool.java 2012/08/14 06:00:55 1.3 +++ jsr166/src/jsr166e/ForkJoinPool.java 2012/10/12 16:46:37 1.4 @@ -1308,7 +1308,7 @@ public class ForkJoinPool extends Abstra try { WorkQueue[] ws = workQueues; if (w != null && ws != null) { // skip on shutdown/failure - int rs, n = ws.length, m = n - 1; + int rs, n = ws.length, m = n - 1; int s = nextSeed += SEED_INCREMENT; // rarely-colliding sequence w.seed = (s == 0) ? 1 : s; // ensure non-zero seed int r = (s << 1) | 1; // use odd-numbered indices