aboutsummaryrefslogtreecommitdiff
path: root/config
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 /config
parent9a6dea036a574bcb2a7cff149a2938950cd6b8e2 (diff)
downloaddejagnu-dc50e9b73e5a2c9c9013e08500b97e575ae5eb86.zip
dejagnu-dc50e9b73e5a2c9c9013e08500b97e575ae5eb86.tar.gz
dejagnu-dc50e9b73e5a2c9c9013e08500b97e575ae5eb86.tar.bz2
* config/ddb.exp (${board}_init): Fix thinko: use Tcl incr command
to increment count rather than count++ as in C.
Diffstat (limited to 'config')
-rw-r--r--config/ddb.exp2
1 files changed, 1 insertions, 1 deletions
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
}