missing: Fix statx syscall ifdeffery

Fix a copy/paste mistake.

Fixes: #8238
This commit is contained in:
Lennart Poettering 2018-02-21 17:25:01 +01:00
parent a4896a1f14
commit fd91e3ef49

View file

@ -415,9 +415,9 @@ static inline int missing_bpf(int cmd, union bpf_attr *attr, size_t size) {
#if !HAVE_STATX
# ifndef __NR_statx
# if defined __i386__
# define __NR_bpf 383
# define __NR_statx 383
# elif defined __x86_64__
# define __NR_bpf 332
# define __NR_statx 332
# else
# warning "__NR_statx not defined for your architecture"
# endif