Skip to content

Commit

Permalink
Fix to_zig() invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnite committed Jan 18, 2025
1 parent b2908c1 commit a24f576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/regz/src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,6 @@ fn main_impl() anyerror!void {
std.io.getStdOut().writer();

var buffered = std.io.bufferedWriter(raw_writer);
try db.to_zig(.{ .for_microzig = args.microzig }, buffered.writer());
try db.to_zig(buffered.writer(), .{ .for_microzig = args.microzig });
try buffered.flush();
}

0 comments on commit a24f576

Please sign in to comment.