aboutsummaryrefslogtreecommitdiff
path: root/src/link.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-02-18 23:54:47 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-02-19 00:04:31 -0700
commit914540ddb5867efe5c1823c281641897bc4cd22a (patch)
tree3fae3be246291d26fb10c2ff3a4b415e3d51ec12 /src/link.zig
parent9010bd8aec612d5a14e4be800c80b72025fac2c5 (diff)
downloadzig-914540ddb5867efe5c1823c281641897bc4cd22a.tar.gz
zig-914540ddb5867efe5c1823c281641897bc4cd22a.zip
astgen: fix remaining compile errors
Now it builds and what remains in this branch is: * fix the stage2 compiler regressions from this branch * finish the rest of zig fmt test cases, get them passing * Merge in Vexu's translate-c AST branch & fix translate-c regressions
Diffstat (limited to 'src/link.zig')
-rw-r--r--src/link.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/link.zig b/src/link.zig
index 3d0a54f416..0a4cde0284 100644
--- a/src/link.zig
+++ b/src/link.zig
@@ -550,11 +550,11 @@ pub const File = struct {
id_symlink_basename,
&prev_digest_buf,
) catch |err| b: {
- log.debug("archive new_digest={} readFile error: {s}", .{ digest, @errorName(err) });
+ log.debug("archive new_digest={x} readFile error: {s}", .{ digest, @errorName(err) });
break :b prev_digest_buf[0..0];
};
if (mem.eql(u8, prev_digest, &digest)) {
- log.debug("archive digest={} match - skipping invocation", .{digest});
+ log.debug("archive digest={x} match - skipping invocation", .{digest});
base.lock = man.toOwnedLock();
return;
}