mirror of
https://github.com/yawut/SDL.git
synced 2026-06-13 04:00:50 -05:00
Updated RPM spec file with License keyword
This commit is contained in:
parent
218287205d
commit
a13c34cfef
|
|
@ -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++;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user