diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-02-19 20:27:06 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-02-19 20:27:06 -0700 |
| commit | 70761d7c52cd3634e086b0914c9520ef4dc01eee (patch) | |
| tree | ff3f5458deab36e4ce228e52c396230688cfa0ca /src/Compilation.zig | |
| parent | 6959b177ef27f88d6fc9ef1f0a6301f58d36d730 (diff) | |
| download | zig-70761d7c52cd3634e086b0914c9520ef4dc01eee.tar.gz zig-70761d7c52cd3634e086b0914c9520ef4dc01eee.zip | |
stage2: remove incorrect newlines from log statements
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index b3ee73f03f..227355de93 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -1935,7 +1935,7 @@ pub fn cImport(comp: *Compilation, c_src: []const u8) !CImportResult { "o", &digest, cimport_zig_basename, }); if (comp.verbose_cimport) { - log.info("C import output: {s}\n", .{out_zig_path}); + log.info("C import output: {s}", .{out_zig_path}); } return CImportResult{ .out_zig_path = out_zig_path, @@ -2999,7 +2999,7 @@ pub fn updateSubCompilation(sub_compilation: *Compilation) !void { for (errors.list) |full_err_msg| { switch (full_err_msg) { .src => |src| { - log.err("{s}:{d}:{d}: {s}\n", .{ + log.err("{s}:{d}:{d}: {s}", .{ src.src_path, src.line + 1, src.column + 1, |
