Removed redundant 'break;' statement. Based on SVN version 105 of offical version of TinyScheme.

This commit is contained in:
Kevin Cozens 2015-07-14 17:15:30 -04:00
parent 2fae5d7d8b
commit 4b55c551f3
1 changed files with 4 additions and 3 deletions

View File

@ -2200,10 +2200,11 @@ static void atom2str(scheme *sc, pointer l, int f, char **pp, int *plen) {
} }
#else #else
if(c<32) { if(c<32) {
snprintf(p,STRBUFFSIZE,"#\\x%x",c); break; snprintf(p,STRBUFFSIZE,"#\\x%x",c);
break;
} }
#endif #endif
snprintf(p,STRBUFFSIZE,"#\\%c",c); break; snprintf(p,STRBUFFSIZE,"#\\%c",c);
break; break;
} }
} }