aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2003-08-07 04:14:33 +0000
committerBen Elliston <bje@gnu.org>2003-08-07 04:14:33 +0000
commitdc50e9b73e5a2c9c9013e08500b97e575ae5eb86 (patch)
tree5249ca355347c1d261a58251aa3f236d4faa1f1f
parent9a6dea036a574bcb2a7cff149a2938950cd6b8e2 (diff)
* config/ddb.exp (${board}_init): Fix thinko: use Tcl incr command
to increment count rather than count++ as in C.
-rw-r--r--ChangeLog5
-rw-r--r--config/ddb.exp2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d5d9bb..3c57758 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-07 Ben Elliston <bje@wasabisystems.com>
+
+ * 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 <bje@wasabisystems.com>
* 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
}