Commit c1d47976 authored by Sam Lantinga's avatar Sam Lantinga

Updated RPM spec file with License keyword

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401808
parent 331b0087
...@@ -136,7 +136,7 @@ char *SDL_GetErrorMsg(char *errstr, unsigned int maxlen) ...@@ -136,7 +136,7 @@ char *SDL_GetErrorMsg(char *errstr, unsigned int maxlen)
if ( *fmt == '%' ) { if ( *fmt == '%' ) {
char tmp[32], *spot = tmp; char tmp[32], *spot = tmp;
*spot++ = *fmt++; *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++;
} }
*spot++ = *fmt++; *spot++ = *fmt++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment