You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
..\Nuklear\common\overview.c(430,33): warning C4477: 'sprintf' : format string '%lu' requires an argument of type 'unsigned long', but variadic argument 1 has type 'size_t'
..\Nuklear\common\overview.c(430,33): message : consider using '%zu' in the format string
..\Nuklear\common\overview.c(442,33): warning C4477: 'sprintf' : format string '%lu' requires an argument of type 'unsigned long', but variadic argument 1 has type 'size_t'
..\Nuklear\common\overview.c(442,33): message : consider using '%zu' in the format string
The text was updated successfully, but these errors were encountered:
Without looking deep into the code, if this is a bit-width issue these % formatters should be replaced with PRIxxx macros (or %zu for size_t). They are platform-independent (though they require stdlib - maybe even more build configuration needed).
..\Nuklear\common\overview.c(430,33): warning C4477: 'sprintf' : format string '%lu' requires an argument of type 'unsigned long', but variadic argument 1 has type 'size_t'
..\Nuklear\common\overview.c(430,33): message : consider using '%zu' in the format string
..\Nuklear\common\overview.c(442,33): warning C4477: 'sprintf' : format string '%lu' requires an argument of type 'unsigned long', but variadic argument 1 has type 'size_t'
..\Nuklear\common\overview.c(442,33): message : consider using '%zu' in the format string
The text was updated successfully, but these errors were encountered: