diff options
| author | Isaac Andrade <andradei@proton.me> | 2024-09-21 20:59:54 -0600 |
|---|---|---|
| committer | Isaac Andrade <andradei@proton.me> | 2024-09-21 20:59:54 -0600 |
| commit | c68d847fb38d11416b09a7bae2b33167d0bf6191 (patch) | |
| tree | e2443e8893f9c577df88cbd26259312b2f78a4e3 | |
| parent | 5162c6c506be74fcd8f7e09e7bb51106e03b24a3 (diff) | |
Satisfy the compiler.
| -rw-r--r-- | core/sys/posix/signal.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/posix/signal.odin b/core/sys/posix/signal.odin index 8edaad5ba..6748c162f 100644 --- a/core/sys/posix/signal.odin +++ b/core/sys/posix/signal.odin @@ -1143,7 +1143,7 @@ when ODIN_OS == .Darwin { uid_t :: distinct c.uint32_t sigset_t :: struct { - [1024/(8 * size_of(c.ulong))]val + [1024/(8 * size_of(c.ulong))]val, } SIGRTMIN :: __libc_current_sigrtmin() |