# HG changeset patch # User Sam Lantinga # Date 1147846167 0 # Node ID 845bcffc0dd8ceb547c8b7b07a6792177008ca0b # Parent 699eaff87cbb5503a22a31626335d85d8466abc0 Updated RPM spec file with License keyword diff -r 699eaff87cbb -r 845bcffc0dd8 src/SDL_error.c --- a/src/SDL_error.c Wed May 17 04:42:37 2006 +0000 +++ b/src/SDL_error.c Wed May 17 06:09:27 2006 +0000 @@ -136,7 +136,7 @@ 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++;