Skip to content

Commit

Permalink
Compiler2: fix error formatting in Parse_ExportAllFunctions()
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Dec 20, 2024
1 parent 75f52ea commit 63f5307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/script2/cs_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7039,7 +7039,7 @@ void AGS::Parser::Parse_ExportAllFunctions()
_scrip.Functions[func_idx].Name,
_scrip.Functions[func_idx].CodeOffs,
_scrip.Functions[func_idx].ParamsCount))
InternalError("Could not export function '%s', exports table overflow?", _scrip.Functions[func_idx].Name);
InternalError("Could not export function '%s', exports table overflow?", _scrip.Functions[func_idx].Name.c_str());
}
}

Expand Down

0 comments on commit 63f5307

Please sign in to comment.