Skip to content

Commit

Permalink
Address fatal compiler warning.
Browse files Browse the repository at this point in the history
Newer IDF toolchain is stricter, and we'd apparently failed to build test
the Lua-5.1 path for some time.
  • Loading branch information
jmattsson committed Mar 27, 2024
1 parent 59c2b56 commit 9948712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lua/lua-5.1/ldump.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9948712

Please sign in to comment.