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 {...@@ -125,7 +125,7 @@ pub fn fileList(alloc: std.mem.Allocator, dir: std.fs.IterableDir) ![]string {
125 var walk = try dir.walk(alloc);125 var walk = try dir.walk(alloc);
126 defer walk.deinit();126 defer walk.deinit();
127 while (try walk.next()) |entry| {127 while (try walk.next()) |entry| {
128 if (entry.kind != .File) continue;128 if (entry.kind != .file) continue;
129 try list.append(try alloc.dupe(u8, entry.path));129 try list.append(try alloc.dupe(u8, entry.path));
130 }130 }
131 return list.toOwnedSlice();131 return list.toOwnedSlice();