Commit 477ded9042

Andrew Kelley <superjoe30@gmail.com>
2018-04-10 17:00:26
add missing call in zig fmt to commit results to disk
1 parent 4545be3
Changed files (1)
src-self-hosted
src-self-hosted/main.zig
@@ -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();
     }
 }