summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <mathstuf@gmail.com>2014-09-21 09:00:39 -0400
committerwm4 <wm4@nowhere>2014-09-21 15:06:47 +0200
commit54d1dae68753f9d36b01021313aafc51ca9bd300 (patch)
tree210d3b4fe99bfb50dd7e19b40600b99cb6d20aaa
parentb12a2872277ccfc9fed347cb1f3c576f61713b55 (diff)
downloadmpv-54d1dae68753f9d36b01021313aafc51ca9bd300.tar.bz2
mpv-54d1dae68753f9d36b01021313aafc51ca9bd300.tar.xz
TOOLS: idet: remove extra '$' in $(()) expansion
-rwxr-xr-xTOOLS/idet.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/TOOLS/idet.sh b/TOOLS/idet.sh
index f6d67f96dc..247864f8aa 100755
--- a/TOOLS/idet.sh
+++ b/TOOLS/idet.sh
@@ -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