Skip to content

Commit 9dc8273

Browse files
committed
Make error code readable.
1 parent 63404f0 commit 9dc8273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/tools/nec-aurora-build/necaurora-ofld-wrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ int main(int argc, char **argv) {
164164
rc = runStaticLinker(ObjectFiles, Args);
165165
if (rc != 0) {
166166
std::cerr << "necaurora-ofld-wrapper: static linking failed "
167-
<< "with code " << rc;
167+
<< "with code " << rc << "\n";
168168
return EXIT_FAILURE;
169169
}
170170
} else if (Mode == ToolMode::Passthrough) {

0 commit comments

Comments
 (0)