aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2023-11-09 14:51:00 +0100
committerJakub Konka <kubkon@jakubkonka.com>2023-11-09 14:51:00 +0100
commit50f48022f04b747bb2624858df89366dfc63b0a4 (patch)
treed57a6c9e3097dcab28de7ac888e368e5b85c3395
parent1f8dd27e40bb455da85bfb1ae655ad63bc05ea08 (diff)
downloadzig-50f48022f04b747bb2624858df89366dfc63b0a4.tar.gz
zig-50f48022f04b747bb2624858df89366dfc63b0a4.zip
test/link/elf: fix .eh_frame test
-rw-r--r--test/link/elf.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/link/elf.zig b/test/link/elf.zig
index 4ab7df288c..f458fbb8de 100644
--- a/test/link/elf.zig
+++ b/test/link/elf.zig
@@ -2167,7 +2167,7 @@ fn testRelocatableEhFrame(b: *Build, opts: Options) *Step {
\\ try {
\\ try_again();
\\ } catch (const std::exception &e) {
- \\ std::cout << "exception=" << e.what() << std::endl;
+ \\ std::cout << "exception=" << e.what();
\\ }
\\ return 0;
\\}