- Replace 'switch(' with 'switch ('.

git-svn-id: svn://svn.berlios.de/openocd/trunk@2359 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
zwelch
2009-06-23 22:36:56 +00:00
parent 50c086ffb9
commit 9af5e445b7
19 changed files with 96 additions and 96 deletions

View File

@@ -77,7 +77,7 @@ int tap_move_ndx( tap_state_t astate )
int ndx;
switch( astate )
switch ( astate )
{
case TAP_RESET: ndx = 0; break;
case TAP_DRSHIFT: ndx = 2; break;
@@ -209,10 +209,10 @@ bool tap_is_state_stable(tap_state_t astate)
{
bool is_stable;
/* A switch() is used because it is symbol dependent
/* A switch () is used because it is symbol dependent
(not value dependent like an array), and can also check bounds.
*/
switch( astate )
switch ( astate )
{
case TAP_RESET:
case TAP_IDLE:
@@ -331,7 +331,7 @@ const char* tap_state_name(tap_state_t state)
{
const char* ret;
switch( state )
switch ( state )
{
case TAP_RESET: ret = "RESET"; break;
case TAP_IDLE: ret = "RUN/IDLE"; break;