diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-23 22:37:21 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-23 22:37:21 +0000 |
commit | 95d2a2372421aeddae01f1af51279ab7989e46b5 (patch) | |
tree | ee7907029137638c353969e5ada42e4dc7dd2779 /src/xsvf | |
parent | 9af5e445b796f3b4a51d41f9d2eeaf1f5cd78e3b (diff) | |
download | openocd+libswd-95d2a2372421aeddae01f1af51279ab7989e46b5.tar.gz openocd+libswd-95d2a2372421aeddae01f1af51279ab7989e46b5.tar.bz2 openocd+libswd-95d2a2372421aeddae01f1af51279ab7989e46b5.tar.xz openocd+libswd-95d2a2372421aeddae01f1af51279ab7989e46b5.zip |
- Replace 'for(' with 'for ('.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2360 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/xsvf')
-rw-r--r-- | src/xsvf/xsvf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xsvf/xsvf.c b/src/xsvf/xsvf.c index f0213c3e..f4c5df62 100644 --- a/src/xsvf/xsvf.c +++ b/src/xsvf/xsvf.c @@ -366,7 +366,7 @@ static int handle_xsvf_command(struct command_context_s *cmd_ctx, char *cmd, cha LOG_DEBUG("%s %d", op_name, xsdrsize); - for( attempt=0; attempt<limit; ++attempt ) + for ( attempt=0; attempt<limit; ++attempt ) { scan_field_t field; @@ -836,7 +836,7 @@ static int handle_xsvf_command(struct command_context_s *cmd_ctx, char *cmd, cha if (limit < 1) limit = 1; - for( attempt=0; attempt<limit; ++attempt ) + for ( attempt=0; attempt<limit; ++attempt ) { scan_field_t field; |