| author | |
| committer | |
| log | 405b8e9eeefda07b16044690471cfd57fc654c75 |
| tree | 467c387d7dcdf104389b387a28e89157b5a67f95 |
| parent | f47b7a043772e3adda3cd10a76894703b499210a |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/dynamic_library.zig+1-1| ... | @@ -277,7 +277,7 @@ pub const WindowsDynLib = struct { | ... | @@ -277,7 +277,7 @@ pub const WindowsDynLib = struct { |
| 277 | } | 277 | } |
| 278 | 278 | ||
| 279 | pub fn openC(path_c: [*:0]const u8) !WindowsDynLib { | 279 | 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); |
| 281 | return openW(&path_w); | 281 | return openW(&path_w); |
| 282 | } | 282 | } |
| 283 | 283 |