aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler/resinator/errors.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compiler/resinator/errors.zig')
-rw-r--r--lib/compiler/resinator/errors.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/resinator/errors.zig b/lib/compiler/resinator/errors.zig
index 0060990ab6..8509aa610f 100644
--- a/lib/compiler/resinator/errors.zig
+++ b/lib/compiler/resinator/errors.zig
@@ -1221,8 +1221,8 @@ const CorrespondingLines = struct {
};
}
- pub fn deinit(self: *CorrespondingLines) void {
- self.file.close();
+ pub fn deinit(self: *CorrespondingLines, io: Io) void {
+ self.file.close(io);
}
};