- 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

@@ -992,7 +992,7 @@ typedef struct jim_getopt {
* return e;
* }
*
* switch( n->value ){
* switch ( n->value ){
* case ALIVE:
* printf("Option ALIVE specified\n");
* break;
@@ -1112,7 +1112,7 @@ JIM_STATIC int JIM_API( Jim_GetOpt_Nvp)( Jim_GetOptInfo *goi, const Jim_Nvp *loo
* return e;
* }
*
* switch( n->value ){
* switch ( n->value ){
* case OPT_SEX:
* // handle: --sex male|female|lots|needmore
* e = Jim_GetOpt_Nvp( &goi, &nvp_sex, &n );