- Replace '){' with ') {'.
[fw/openocd] / src / jtag / interface.c
index b78ffdeca7d4d41a31a14cd87993f3e04e0faed5..1511dfebf28674047a80e26dcfec019a63d59160 100644 (file)
@@ -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;
                }
        }