--- jsr166/src/jsr166y/ForkJoinTask.java 2010/09/20 20:42:37 1.64 +++ jsr166/src/jsr166y/ForkJoinTask.java 2010/10/16 16:37:30 1.65 @@ -261,7 +261,7 @@ public abstract class ForkJoinTask im int s; while ((s = status) >= 0) { synchronized (this) { - if (UNSAFE.compareAndSwapInt(this, statusOffset, s, SIGNAL)){ + if (UNSAFE.compareAndSwapInt(this, statusOffset, s, SIGNAL)) { boolean interrupted = false; while (status >= 0) { try {