From: data Date: Sat, 5 Aug 2006 20:41:19 +0000 (+0000) Subject: Typo in patch X-Git-Url: https://git.hcoop.net/clinton/abcde.git/commitdiff_plain/a9c088da2c38d0971991865ba0bdc603dc3df4d9 Typo in patch git-svn-id: http://abcde.googlecode.com/svn/trunk@223 a0fa61bc-5347-0410-a1a9-7f54aa4e1825 --- diff --git a/abcde b/abcde index 803bb58..660244f 100755 --- a/abcde +++ b/abcde @@ -1520,8 +1520,12 @@ abcde.cue2discid () { IFS=":" set -- $1 IFS="$OIFS" + local first second third + first=$(expr ${1} + 0 ) + second=$(expr ${2} + 0 ) + third=$(expr ${3} + 0 ) - echo $(( ((($1 * 60) + $2) * 75) + $3 )) + echo $(( ((($first * 60) + $second) * 75) + $third )) } OFFSET=150