From d23f9a164eede57135ca141b11c9a9803ed52fc6 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 1 Apr 2020 10:21:17 -0400 Subject: [PATCH] Remove unneeeded address-of operator --- lib/std/io/c_out_stream.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/io/c_out_stream.zig b/lib/std/io/c_out_stream.zig index b8c9a51528..119b7f9d29 100644 --- a/lib/std/io/c_out_stream.zig +++ b/lib/std/io/c_out_stream.zig @@ -39,6 +39,6 @@ test "" { std.fs.cwd().deleteFileZ(filename) catch {}; } - const out_stream = &cOutStream(out_file); + const out_stream = cOutStream(out_file); try out_stream.print("hi: {}\n", .{@as(i32, 123)}); }