diff options
Diffstat (limited to 'validate')
-rw-r--r-- | validate | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ done if [ "$CPUS" = "" ]; then threads=2 else - threads=$((($CPUS + 1) * 2)) # `expr $CPUS + 1` + threads=$(($CPUS + 1)) # `expr $CPUS + 1` fi if [ $testsuite_only -eq 0 ]; then |