aboutsummaryrefslogtreecommitdiff
path: root/src/cache.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache.zig')
-rw-r--r--src/cache.zig4
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;
};