diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-23 22:40:10 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-23 22:40:10 +0000 |
commit | 4ce93ac479c29210c4b472a16733bed2537c35f9 (patch) | |
tree | 32b3f91bc20272afc249a4bd683956f2d98a5852 /src/target/arm720t.c | |
parent | 128a73342856217e98a5da64b2805e062fd4e00d (diff) | |
download | openocd+libswd-4ce93ac479c29210c4b472a16733bed2537c35f9.tar.gz openocd+libswd-4ce93ac479c29210c4b472a16733bed2537c35f9.tar.bz2 openocd+libswd-4ce93ac479c29210c4b472a16733bed2537c35f9.tar.xz openocd+libswd-4ce93ac479c29210c4b472a16733bed2537c35f9.zip |
- Fixes '>=' whitespace
- Replace ')\(>=\)\(\w\)' with ') \1 \2'.
- Replace '\(\w\)\(>=\)\(\w\)' with '\1 \2 \3'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2367 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/arm720t.c')
-rw-r--r-- | src/target/arm720t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm720t.c b/src/target/arm720t.c index cdc5fd77..d709bacc 100644 --- a/src/target/arm720t.c +++ b/src/target/arm720t.c @@ -388,7 +388,7 @@ int arm720t_soft_reset_halt(struct target_s *target) { break; } - if (debug_level>=3) + if (debug_level >= 3) { alive_sleep(100); } else |