From a23f466de022f07441beaa3440abff46cd147bfa Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Thu, 7 Feb 2019 09:49:08 -0800 Subject: [PATCH] "long int" => "long" --- stb_sprintf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stb_sprintf.h b/stb_sprintf.h index c5fb0ab..5a0b030 100644 --- a/stb_sprintf.h +++ b/stb_sprintf.h @@ -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;