Skip to content

Commit

Permalink
Fix compiler warning (#4491)
Browse files Browse the repository at this point in the history
I'm not sure what that stray `+` was doing in there.
  • Loading branch information
SeanTAllen authored Feb 6, 2024
1 parent 17ee1a5 commit 4522447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libponyc/codegen/genopt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ bool genopt(compile_t* c, bool pony_specific)
{
errorf(errors, NULL, "Module verification failed: %s", msg);
errorf_continue(errors, NULL,
+ "Please file an issue ticket. Use --noverify to bypass this error.");
"Please file an issue ticket. Use --noverify to bypass this error.");
LLVMDisposeMessage(msg);
return false;
}
Expand Down

0 comments on commit 4522447

Please sign in to comment.