diff options
Diffstat (limited to 'libc/sysdeps/linux/common/bits/ipc.h')
-rw-r--r-- | libc/sysdeps/linux/common/bits/ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/bits/ipc.h b/libc/sysdeps/linux/common/bits/ipc.h index 54412ff32..97f9b5808 100644 --- a/libc/sysdeps/linux/common/bits/ipc.h +++ b/libc/sysdeps/linux/common/bits/ipc.h @@ -45,12 +45,12 @@ typedef int __kernel_key_t; /* Data structure used to pass permission information to IPC operations. */ struct ipc_perm { - __kernel_key_t key; + __kernel_key_t __key; __kernel_uid_t uid; __kernel_gid_t gid; __kernel_uid_t cuid; __kernel_gid_t cgid; __kernel_mode_t mode; - unsigned short seq; + unsigned short __seq; }; |