stage2: fix compile error merge conflict

3250b20ceabea044bd4c7b1653d76d7069840058 had a silent merge conflict
with master branch; fixed now.
This commit is contained in:
Andrew Kelley 2022-09-14 16:41:53 -07:00
parent 8cab0762d8
commit 17596c79a9

View File

@ -21,7 +21,7 @@ pub fn cmdEnv(gpa: Allocator, args: []const []const u8, stdout: std.fs.File.Writ
const global_cache_dir = try introspect.resolveGlobalCacheDir(gpa);
defer gpa.free(global_cache_dir);
const info = try std.zig.system.NativeTargetInfo.detect(gpa, .{});
const info = try std.zig.system.NativeTargetInfo.detect(.{});
const triple = try info.target.zigTriple(gpa);
defer gpa.free(triple);