diff options
author | 2022-11-15 17:52:04 -0800 | |
---|---|---|
committer | 2022-11-15 17:52:04 -0800 | |
commit | 934360646fd063a84c6527eea059dc40ae0050bb (patch) | |
tree | 41d17932e07fd3230ab924b102079d84ee0403e3 /src/cache.zig | |
parent | 98df9d7703708cc7351563b9500d6a337003c3eb (diff) | |
download | bun-u/vjpr/zig-0.10.tar.gz bun-u/vjpr/zig-0.10.tar.zst bun-u/vjpr/zig-0.10.zip |
Diffstat (limited to '')
-rw-r--r-- | src/cache.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cache.zig b/src/cache.zig index 3ee2138d4..10e5b588f 100644 --- a/src/cache.zig +++ b/src/cache.zig @@ -119,14 +119,14 @@ pub const Fs = struct { const file = if (this.stream) rfs.readFileWithHandle(path, null, file_handle, true, shared, true) catch |err| { if (comptime Environment.isDebug) { - Output.printError("{any}: readFile error -- {any}", .{ path, @errorName(err) }); + Output.printError("{s}: readFile error -- {s}", .{ path, @errorName(err) }); } return err; } else rfs.readFileWithHandle(path, null, file_handle, true, shared, false) catch |err| { if (comptime Environment.isDebug) { - Output.printError("{any}: readFile error -- {any}", .{ path, @errorName(err) }); + Output.printError("{s}: readFile error -- {s}", .{ path, @errorName(err) }); } return err; }; |