fix missing semicolon

This commit is contained in:
Shritesh Bhattarai 2019-04-26 19:58:43 -05:00 committed by Andrew Kelley
parent 2d6520d5d4
commit d02489fd9a

View File

@ -129,7 +129,7 @@ export fn stage2_fmt(argc: c_int, argv: [*]const [*]const u8) c_int {
fmtMain(argc, argv) catch |e| {
std.debug.warn("{}\n", @errorName(e));
return -1;
}
};
}
return 0;
}