Fix compilation on latest Zig

This commit is contained in:
Auguste Rame 2021-12-23 14:00:07 -05:00
parent cb4e742134
commit 18569926a3

View File

@ -1655,13 +1655,12 @@ pub fn main() anyerror!void {
// Check arguments. // Check arguments.
var args_it = std.process.args(); var args_it = std.process.args();
defer args_it.deinit(); defer args_it.deinit();
const prog_name = try args_it.next(allocator) orelse @panic("Could not find self argument"); const prog_name = (try args_it.next(allocator)) orelse @panic("Could not find self argument");
allocator.free(prog_name); allocator.free(prog_name);
var config_path: ?[]const u8 = null; var config_path: ?[]const u8 = null;
var next_arg_config_path = false; var next_arg_config_path = false;
while (args_it.next(allocator)) |maybe_arg| { while (try args_it.next(allocator)) |arg| {
const arg = try maybe_arg;
defer allocator.free(arg); defer allocator.free(arg);
if (next_arg_config_path) { if (next_arg_config_path) {