authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-06-18 21:59:36 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-06-18 21:59:36 -07:00
logff267312e8d714c9b9d8c44ad3291f6e509dc12f
treecdbf9e40b4c0a82ccf92c5ea13e448418914ad05
parent31ec837a38440ea317bfc967b77c6ea13ec48d87

another zig master 0.11.0-dev.3309+8f5f8090c fix


1 files changed, 1 insertions(+), 1 deletions(-)

src/lib.zig+1-1
......@@ -125,7 +125,7 @@ pub fn fileList(alloc: std.mem.Allocator, dir: std.fs.IterableDir) ![]string {
125125 var walk = try dir.walk(alloc);
126126 defer walk.deinit();
127127 while (try walk.next()) |entry| {
128 if (entry.kind != .File) continue;
128 if (entry.kind != .file) continue;
129129 try list.append(try alloc.dupe(u8, entry.path));
130130 }
131131 return list.toOwnedSlice();