Skip to content

Commit

Permalink
Merge pull request #1307 from Azaezel/alpha41/loglunk
Browse files Browse the repository at this point in the history
correct malformed error reporting
  • Loading branch information
Azaezel committed Aug 28, 2024
2 parents 0d07823 + 24a1636 commit 77a4486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Engine/source/console/torquescript/cmdgram.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3363,7 +3363,7 @@ yyreport_syntax_error (const yypcontext_t *ctx)
output += String::ToString("%5s | %*s", "", loc->first_column, "^");
}

yyerror(output.c_str());
yyerror("%s",output.c_str());

return ret;
}

0 comments on commit 77a4486

Please sign in to comment.