std.process: fix typo

This commit is contained in:
Andrew Kelley 2020-02-22 17:49:52 -05:00
parent cfffb9c5e9
commit 767f041068

View File

@ -37,7 +37,7 @@ pub fn getEnvMap(allocator: *Allocator) !BufMap {
errdefer result.deinit();
if (builtin.os == .windows) {
const ptr = windows.peb().ProcessParameters.Environment;
const ptr = os.windows.peb().ProcessParameters.Environment;
defer os.windows.FreeEnvironmentStringsW(ptr);
var i: usize = 0;