From dc50e9b73e5a2c9c9013e08500b97e575ae5eb86 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Thu, 7 Aug 2003 04:14:33 +0000 Subject: [PATCH] * config/ddb.exp (${board}_init): Fix thinko: use Tcl incr command to increment count rather than count++ as in C. --- ChangeLog | 5 +++++ config/ddb.exp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0d5d9bb..3c57758 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-08-07 Ben Elliston + + * config/ddb.exp (${board}_init): Fix thinko: use Tcl incr command + to increment count rather than count++ as in C. + 2003-08-06 Ben Elliston * lib/remote.exp: Replace "TCL" with "Tcl". diff --git a/config/ddb.exp b/config/ddb.exp index 71a1a3f..1be4324 100644 --- a/config/ddb.exp +++ b/config/ddb.exp @@ -64,7 +64,7 @@ proc ${board}_init { dest } { } timeout { } -re "0x0" { - count++ + incr count if(count<5) { exp_continue } -- 2.7.4