add missing call in zig fmt to commit results to disk

This commit is contained in:
Andrew Kelley 2018-04-10 11:00:26 -04:00
parent 4545be360a
commit 477ded9042

View File

@ -741,6 +741,7 @@ fn fmtMain(allocator: &mem.Allocator, file_paths: []const []const u8) !void {
defer baf.destroy();
try parser.renderSource(baf.stream(), tree.root_node);
try baf.finish();
}
}