AP_Scripting: Reduce stack allocated buffer size to reduce warnings

about large frame size
This commit is contained in:
Michael du Breuil 2019-01-30 22:59:23 -07:00 committed by WickedShell
parent b45970fded
commit c3e11fd34d
1 changed files with 1 additions and 1 deletions

View File

@ -758,7 +758,7 @@
#if LUA_FLOAT_TYPE == LUA_FLOAT_LONGDOUBLE
#define LUAL_BUFFERSIZE 8192
#else
#define LUAL_BUFFERSIZE ((int)(0x80 * sizeof(void*) * sizeof(lua_Integer)))
#define LUAL_BUFFERSIZE ((int)(0x20 * sizeof(void*) * sizeof(lua_Integer)))
#endif
/* }================================================================== */