- Replace 'if(' with 'if ('.
[fw/openocd] / src / jtag / interface.c
index 14c626ee9c8bb5e5adb897d760098db6b49b35ba..9e8c4e419591de4bee9163cd394fd5291c7943f4 100644 (file)
@@ -361,7 +361,7 @@ tap_state_t tap_state_by_name(const char *name)
 
        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;
                }
        }