diff options
author | Ben Elliston <bje@gnu.org> | 2003-08-07 04:14:33 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2003-08-07 04:14:33 +0000 |
commit | dc50e9b73e5a2c9c9013e08500b97e575ae5eb86 (patch) | |
tree | 5249ca355347c1d261a58251aa3f236d4faa1f1f /config | |
parent | 9a6dea036a574bcb2a7cff149a2938950cd6b8e2 (diff) | |
download | dejagnu-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.exp | 2 |
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 } |