Address fatal compiler warning.

Newer IDF toolchain is stricter, and we'd apparently failed to build test
the Lua-5.1 path for some time.
This commit is contained in:
Jade Mattsson 2024-03-27 15:15:10 +11:00
parent d96effa34d
commit d8b7ca7014
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ static void DumpCode(const Proto *f, DumpState* D)
static void DumpString(const TString* s, DumpState* D)
{
if (s==NULL || getstr(s)==NULL)
if (s==NULL)
{
strsize_t size=0;
DumpSize(size,D);