Skip to content

Commit

Permalink
Compiler: Add new line to an error message
Browse files Browse the repository at this point in the history
  • Loading branch information
cqundefine committed Jun 14, 2024
1 parent b1153c7 commit 7d14092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Context::Context(const std::string& baseFile, std::optional<std::string> passedT

if (!target)
{
fprintf(stderr, "Error loading target %s: %s", targetTriple.c_str(), error.c_str());
fprintf(stderr, "Error loading target %s: %s\n", targetTriple.c_str(), error.c_str());
exit(1);
}

Expand Down

0 comments on commit 7d14092

Please sign in to comment.