1
mirror of https://github.com/mpv-player/mpv synced 2024-11-14 22:48:35 +01:00

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

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