Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated RPM spec file with License keyword
  • Loading branch information
slouken committed May 17, 2006
1 parent e3f90aa commit e6dd0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SDL_error.c
Expand Up @@ -136,7 +136,7 @@ char *SDL_GetErrorMsg(char *errstr, unsigned int maxlen)
if ( *fmt == '%' ) {
char tmp[32], *spot = tmp;
*spot++ = *fmt++;
while ( *fmt == '.' || (*fmt >= '0' && *fmt <= '9') && spot < (tmp+SDL_arraysize(tmp)-2) ) {
while ( (*fmt == '.' || (*fmt >= '0' && *fmt <= '9')) && spot < (tmp+SDL_arraysize(tmp)-2) ) {
*spot++ = *fmt++;
}
*spot++ = *fmt++;
Expand Down

0 comments on commit e6dd0d7

Please sign in to comment.