diff options
| author | diniamo <diniamo53@gmail.com> | 2025-08-14 14:59:47 +0200 |
|---|---|---|
| committer | diniamo <diniamo53@gmail.com> | 2025-08-14 15:01:42 +0200 |
| commit | 88dba1194ac9f2becffc5cae201de93d2fbc9405 (patch) | |
| tree | b75b1ac6509c4b33ec530adf290c5f5998c32304 /core/sys | |
| parent | 71e992d5bf0e3169ddaa90347e6cd264d5394de4 (diff) | |
Fix ITimer_Flags_Bits enum value
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/linux/bits.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/linux/bits.odin b/core/sys/linux/bits.odin index f9c4ec22e..64cdd2208 100644 --- a/core/sys/linux/bits.odin +++ b/core/sys/linux/bits.odin @@ -1838,7 +1838,7 @@ Clock_Id :: enum { Bits for POSIX interval timer flags. */ ITimer_Flags_Bits :: enum { - ABSTIME = 1, + ABSTIME = 0, } /* |