- Replace 'while(' with 'while ('.
[fw/openocd] / src / jtag / interface.c
index 9e8c4e419591de4bee9163cd394fd5291c7943f4..be85f98e3835241dcd316399758c38e47832a539 100644 (file)
@@ -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)