diff options
| author | flysand7 <thebumboni@gmail.com> | 2024-02-18 23:04:41 +1100 |
|---|---|---|
| committer | flysand7 <thebumboni@gmail.com> | 2024-02-18 23:04:41 +1100 |
| commit | cc185d98b4fda0f9c8dcd87ffb2810d73e801b58 (patch) | |
| tree | fe715a93999e7607e255cc056fef6d0ed8534727 /core/sys/linux/bits.odin | |
| parent | 43a199b57be3642083dfae48070e9c508ca64bab (diff) | |
[sys/linux]: Fix numeric values for socket fd flags
Diffstat (limited to 'core/sys/linux/bits.odin')
| -rw-r--r-- | core/sys/linux/bits.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sys/linux/bits.odin b/core/sys/linux/bits.odin index 8b7de5d5e..ad519e1cd 100644 --- a/core/sys/linux/bits.odin +++ b/core/sys/linux/bits.odin @@ -944,8 +944,8 @@ Socket_Type :: enum { Bits for Socket_FD_Flags */ Socket_FD_Flags_Bits :: enum { - NONBLOCK = 14, - CLOEXEC = 25, + NONBLOCK = 11, + CLOEXEC = 19, } /* |