summaryrefslogtreecommitdiff
path: root/src/jtag/interface.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:36:11 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:36:11 +0000
commit50c086ffb94f199c088f4cc52b7887b668dddf00 (patch)
treef82cbcc5acf534e762fa623923c2b39de0fc07cd /src/jtag/interface.c
parente43979e7020ea9d05a3c0a2af444f292eacb6c53 (diff)
downloadopenocd+libswd-50c086ffb94f199c088f4cc52b7887b668dddf00.tar.gz
openocd+libswd-50c086ffb94f199c088f4cc52b7887b668dddf00.tar.bz2
openocd+libswd-50c086ffb94f199c088f4cc52b7887b668dddf00.tar.xz
openocd+libswd-50c086ffb94f199c088f4cc52b7887b668dddf00.zip
- Replace 'while(' with 'while ('.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2358 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag/interface.c')
-rw-r--r--src/jtag/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/interface.c b/src/jtag/interface.c
index 9e8c4e41..be85f98e 100644
--- a/src/jtag/interface.c
+++ b/src/jtag/interface.c
@@ -372,7 +372,7 @@ tap_state_t tap_state_by_name(const char *name)
#ifdef _DEBUG_JTAG_IO_
#define JTAG_DEBUG_STATE_APPEND(buf, len, bit) \
- do { buf[len] = bit ? '1' : '0'; } while(0)
+ do { buf[len] = bit ? '1' : '0'; } while (0)
#define JTAG_DEBUG_STATE_PRINT(a, b, astr, bstr) \
DEBUG_JTAG_IO("TAP/SM: %9s -> %5s\tTMS: %s\tTDI: %s", \
tap_state_name(a), tap_state_name(b), astr, bstr)