From 2acb45fdcace0fa50e108e7a8889358eabd6be43 Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 3 Apr 2021 21:09:30 -0300 Subject: [PATCH] build.zig: fix for latest zig --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 6858c80..467240c 100644 --- a/build.zig +++ b/build.zig @@ -24,14 +24,14 @@ fn setupLinks(step: *builds.LibExeObjStep) void { for (possible_lilv_include_dirs) |possible_lilv_dir| { var possible_dir = std.fs.cwd().openDir(possible_lilv_dir, .{}) catch |err| { - std.debug.warn("possible lilv {} fail: {}\n", .{ possible_lilv_dir, err }); + std.debug.warn("possible lilv {s} fail: {s}\n", .{ possible_lilv_dir, err }); continue; }; possible_dir.close(); found_any_lilv = true; - std.debug.warn("found lilv at '{}'\n", .{possible_lilv_dir}); + std.debug.warn("found lilv at '{s}'\n", .{possible_lilv_dir}); step.addIncludeDir(possible_lilv_dir); }