diff --git a/lib/compiler/Maker/ScannedConfig.zig b/lib/compiler/Maker/ScannedConfig.zig index cc8c27a35b78b745c4a4606c1a386ee576feffa5..ed5661851351afb4c9a57b8723e2f4d13cd895ba 100644 --- a/lib/compiler/Maker/ScannedConfig.zig +++ b/lib/compiler/Maker/ScannedConfig.zig @@ -43,10 +43,10 @@ pub fn print(sc: *const ScannedConfig, w: *Writer) Writer.Error!void { { var tf = try s.beginTupleField("path_deps", .{}); - for (c.path_deps_base, c.path_deps_sub) |base, sub| { + for (c.path_deps) |path_dep| { var sf = try tf.beginStructField(.{}); - try sf.field("base", @tagName(base), .{}); - try sf.field("sub", sub.slice(c), .{}); + try sf.field("base", @tagName(path_dep.flags.base), .{}); + try sf.field("sub", path_dep.sub.slice(c), .{}); try sf.end(); } try tf.end();