| author | |
| committer | |
| log | ff267312e8d714c9b9d8c44ad3291f6e509dc12f |
| tree | cdbf9e40b4c0a82ccf92c5ea13e448418914ad05 |
| parent | 31ec837a38440ea317bfc967b77c6ea13ec48d87 |
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 | 125 | var walk = try dir.walk(alloc); |
| 126 | 126 | defer walk.deinit(); |
| 127 | 127 | while (try walk.next()) |entry| { |
| 128 | if (entry.kind != .File) continue; | |
| 128 | if (entry.kind != .file) continue; | |
| 129 | 129 | try list.append(try alloc.dupe(u8, entry.path)); |
| 130 | 130 | } |
| 131 | 131 | return list.toOwnedSlice(); |