diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-31 22:32:53 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-31 22:32:53 +0100 |
| commit | f57201bbd1f85772536e050b490a313ca62cb1b7 (patch) | |
| tree | 962ce81e9548d57f84cdab5cadd279f8172d0464 /core/sys/windows | |
| parent | 2db6fea6655215452d445f327cadda815d65afd9 (diff) | |
Remove unneeded semicolons from the core library
Diffstat (limited to 'core/sys/windows')
| -rw-r--r-- | core/sys/windows/types.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin index 823535575..c8d219d96 100644 --- a/core/sys/windows/types.odin +++ b/core/sys/windows/types.odin @@ -398,7 +398,7 @@ when size_of(uintptr) == 4 { szSystemStatus: [WSASYS_STATUS_LEN + 1]u8, } } else { - #panic("unknown word size"); + #panic("unknown word size") } WSABUF :: struct { @@ -863,7 +863,7 @@ SID :: struct #packed { IdentifierAuthority: SID_IDENTIFIER_AUTHORITY, SubAuthority: [15]DWORD, // Array of DWORDs } -#assert(size_of(SID) == SECURITY_MAX_SID_SIZE); +#assert(size_of(SID) == SECURITY_MAX_SID_SIZE) SID_IDENTIFIER_AUTHORITY :: struct #packed { Value: [6]u8, @@ -916,7 +916,7 @@ USER_INFO_1 :: struct #packed { flags: USER_INFO_FLAGS, script_path: LPWSTR, } -#assert(size_of(USER_INFO_1) == 50); +#assert(size_of(USER_INFO_1) == 50) LOCALGROUP_MEMBERS_INFO_0 :: struct #packed { sid: ^SID, |