diff options
| author | Tom Read Cutting <moosichu@users.noreply.github.com> | 2022-04-22 16:12:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-22 11:12:51 -0400 |
| commit | a430630002bf02162ccbf8d3eb10fd73e490cefd (patch) | |
| tree | b25bd6e1665a9207b88e5aaac8e5c4fa10078ac1 /src/Cache.zig | |
| parent | 42e81cd81b8a0167c1a21aadf554cea2d882eadd (diff) | |
| download | zig-a430630002bf02162ccbf8d3eb10fd73e490cefd.tar.gz zig-a430630002bf02162ccbf8d3eb10fd73e490cefd.zip | |
Fix C include files not being in `whole` cache (#11365)
Diffstat (limited to 'src/Cache.zig')
| -rw-r--r-- | src/Cache.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Cache.zig b/src/Cache.zig index 0d4b51492d..2438c5528d 100644 --- a/src/Cache.zig +++ b/src/Cache.zig @@ -690,7 +690,7 @@ pub const Manifest = struct { while (true) { switch (it.next() orelse return) { .target, .target_must_resolve => return, - .prereq => |bytes| try self.addFilePost(bytes), + .prereq => |file_path| try self.addFilePost(file_path), else => |err| { try err.printError(error_buf.writer()); log.err("failed parsing {s}: {s}", .{ dep_file_basename, error_buf.items }); |
