From 985d6677321d7f794fc5d46ffdc257a71aa847e5 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Sun, 1 May 2011 21:37:53 +0000 Subject: [PATCH] fix expression --- bin/tests/system/autosign/tests.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/tests/system/autosign/tests.sh b/bin/tests/system/autosign/tests.sh index 5d5574915d..8a33a301a8 100644 --- a/bin/tests/system/autosign/tests.sh +++ b/bin/tests/system/autosign/tests.sh @@ -14,7 +14,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: tests.sh,v 1.12.18.6 2011/05/01 11:32:34 marka Exp $ +# $Id: tests.sh,v 1.12.18.7 2011/05/01 21:37:53 marka Exp $ SYSTEMTESTTOP=.. . $SYSTEMTESTTOP/conf.sh @@ -865,8 +865,7 @@ check_interval () { { if ($6 == 0) $6 = 25; - x = ($6+ $5*60000 + $4*3600000) - - ($3+ $2*60000 + $1*3600000); + x = ($6+ $5*60000 + $4*3600000) - ($3+ $2*60000 + $1*3600000); x = x/1000; if (x != int(x)) x = int(x + 1);