mirror of https://github.com/GNOME/gimp.git
Removed redundant 'break;' statement. Based on SVN version 105 of offical version of TinyScheme.
This commit is contained in:
parent
2fae5d7d8b
commit
4b55c551f3
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue