We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c1876 commit 9ee9f13Copy full SHA for 9ee9f13
WebGLPlugins/i64lib.c
@@ -404,9 +404,9 @@ static int uint64_tostring(lua_State* L) {
404
char temp[72];
405
uint64_t n = lua_touint64(L, 1);
406
#if ( defined (_WIN32) || defined (_WIN64) ) && !defined (__MINGW32__) && !defined (__MINGW64__)
407
- sprintf_s(temp, sizeof(temp), "%"PRIu64, n);
+ sprintf_s(temp, sizeof(temp), "%" PRIu64, n);
408
#else
409
- snprintf(temp, sizeof(temp), "%"PRIu64, n);
+ snprintf(temp, sizeof(temp), "%" PRIu64, n);
410
#endif
411
412
lua_pushstring(L, temp);
0 commit comments