aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authoremekoi <emekankurumeh@outlook.com>2018-11-27 17:54:09 +0000
committeremekoi <emekankurumeh@outlook.com>2019-01-11 09:56:37 -0600
commit3ff9ab332cf909da12361bf6ea495b2025ca8833 (patch)
treec2e381c2e651def7e91d20340dfcebd5e5f554b7 /std
parent51fff9fa8212f514f76ef69c214e570d4ef98655 (diff)
downloadzig-3ff9ab332cf909da12361bf6ea495b2025ca8833.tar.gz
zig-3ff9ab332cf909da12361bf6ea495b2025ca8833.zip
fixed type signature
Diffstat (limited to 'std')
-rw-r--r--std/os/windows/kernel32.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/os/windows/kernel32.zig b/std/os/windows/kernel32.zig
index 8fd351c125..7a6126133a 100644
--- a/std/os/windows/kernel32.zig
+++ b/std/os/windows/kernel32.zig
@@ -259,7 +259,7 @@ pub extern "kernel32" stdcallcc fn InitOnceExecuteOnce(InitOnce: *RTL_RUN_ONCE,
pub const PINIT_ONCE_FN = ?extern fn(InitOnce: *RTL_RUN_ONCE, Parameter: ?PVOID, Context: ?PVOID) BOOL;
pub const RTL_RUN_ONCE = extern struct {
- Ptr: PVOID,
+ Ptr: ?PVOID,
};
pub const INIT_ONCE_STATIC_INIT = RTL_RUN_ONCE {