authorgravatar for Sebastianhopkins@live.comSebastian <Sebastianhopkins@live.com> 2020-01-18 22:15:42+00:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-01-18 17:56:53-05:00
log405b8e9eeefda07b16044690471cfd57fc654c75
tree467c387d7dcdf104389b387a28e89157b5a67f95
parentf47b7a043772e3adda3cd10a76894703b499210a

fixed typo - "path" lead to undeclared identifier


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/dynamic_library.zig+1-1
......@@ -277,7 +277,7 @@ pub const WindowsDynLib = struct {
277277 }
278278
279279 pub fn openC(path_c: [*:0]const u8) !WindowsDynLib {
280 const path_w = try windows.cStrToPrefixedFileW(path);
280 const path_w = try windows.cStrToPrefixedFileW(path_c);
281281 return openW(&path_w);
282282 }
283283