Skip to content

Commit

Permalink
Fix error message printing
Browse files Browse the repository at this point in the history
  • Loading branch information
arshajii committed Apr 3, 2024
1 parent 0e42fde commit 4c0caeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codon/util/common.cpp
Expand Up @@ -26,10 +26,10 @@ void compilationMessage(const std::string &header, const std::string &msg,
case MessageGroupPos::HEAD:
break;
case MessageGroupPos::MID:
fmt::print("├─ ");
fmt::print(out, "├─ ");
break;
case MessageGroupPos::LAST:
fmt::print("╰─ ");
fmt::print(out, "╰─ ");
break;
}

Expand Down

0 comments on commit 4c0caeb

Please sign in to comment.