"long int" => "long"

This commit is contained in:
Sean Barrett 2019-02-07 09:49:08 -08:00
parent 6244febf5f
commit a23f466de0
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ STBSP__PUBLICDEF int STB_SPRINTF_DECORATE(vsprintfcb)(STBSP_SPRINTFCB *callback,
break;
// are we 64-bit (unix style)
case 'l':
fl |= ((sizeof(long int) == 8) ? STBSP__INTMAX : 0);
fl |= ((sizeof(long) == 8) ? STBSP__INTMAX : 0);
++f;
if (f[0] == 'l') {
fl |= STBSP__INTMAX;