summaryrefslogtreecommitdiff
path: root/src/jtag/interface.c
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:49:06 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-23 22:49:06 +0000
commitc493543fc93cb693abab3146e08314b63d137470 (patch)
treeb6cf56fb5a2cc0d0f7460bae8bd3acec8ceca6f8 /src/jtag/interface.c
parentdc575dc5bf8cb597a0e9a47794744ae6b1928087 (diff)
downloadopenocd_libswd-c493543fc93cb693abab3146e08314b63d137470.tar.gz
openocd_libswd-c493543fc93cb693abab3146e08314b63d137470.tar.bz2
openocd_libswd-c493543fc93cb693abab3146e08314b63d137470.tar.xz
openocd_libswd-c493543fc93cb693abab3146e08314b63d137470.zip
- Replace '){' with ') {'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2378 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag/interface.c')
-rw-r--r--src/jtag/interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jtag/interface.c b/src/jtag/interface.c
index b78ffdec..1511dfeb 100644
--- a/src/jtag/interface.c
+++ b/src/jtag/interface.c
@@ -359,9 +359,9 @@ tap_state_t tap_state_by_name(const char *name)
{
tap_state_t x;
- for (x = 0 ; x < TAP_NUM_STATES ; x++){
+ for (x = 0 ; x < TAP_NUM_STATES ; x++) {
/* be nice to the human */
- if (0 == strcasecmp(name, tap_state_name(x))){
+ if (0 == strcasecmp(name, tap_state_name(x))) {
return x;
}
}