TOOLS: idet: remove extra '$' in $(()) expansion

This commit is contained in:
Ben Boeckel 2014-09-21 09:00:39 -04:00 committed by wm4
parent b12a287227
commit 54d1dae687
1 changed files with 4 additions and 4 deletions

View File

@ -45,10 +45,10 @@ judge()
exit 16
;;
esac
tff=$(($tff + $tff1))
bff=$(($bff + $bff1))
progressive=$(($progressive + $progressive1))
undetermined=$(($undetermined + $undetermined1))
tff=$((tff + tff1))
bff=$((bff + bff1))
progressive=$((progressive + progressive1))
undetermined=$((undetermined + undetermined1))
done <<EOF
$(testfun "$@")
EOF