Commit b3f5d4dc4c

Andrew Kelley <andrew@ziglang.org>
2021-04-09 19:38:44
stage2: fix regression from previous commit
I forgot to build, sorry about that.
1 parent 7c4c549
Changed files (1)
src/Compilation.zig
@@ -322,7 +322,7 @@ pub const AllErrors = struct {
                     }
                 },
                 .plain => |plain| {
-                    stderr.print("{s}: {s}\n", .{ kind, plain.msg });
+                    try stderr.print("{s}: {s}\n", .{ kind, plain.msg });
                 },
             }
         }