Correct arithmetic expression in makeHornInF.sh.

This commit is contained in:
Jim Hague 2013-08-13 00:50:02 +01:00
parent 3fae31f75f
commit db5e5dfe4c
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ fi
# Transpose down (return 0) if top note was > e (> a for horn). # Transpose down (return 0) if top note was > e (> a for horn).
transposedown() transposedown()
{ {
return $(($2 <= 109)) return (($2 <= 109))
} }
dir=`pwd` dir=`pwd`