diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-02-21 17:25:01 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-02-22 10:42:06 +0100 |
commit | fd91e3ef49af021d9b2b8d006e202f1ccc4e400f (patch) | |
tree | b36b6f37d29b1bc5445f1ec62542d817ba770826 /src/basic | |
parent | a4896a1f14a9c89f59a19e1bec5e6229b5cf1528 (diff) | |
download | systemd-fd91e3ef49af021d9b2b8d006e202f1ccc4e400f.tar.gz |
missing: Fix statx syscall ifdeffery
Fix a copy/paste mistake.
Fixes: #8238
Diffstat (limited to 'src/basic')
-rw-r--r-- | src/basic/missing_syscall.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/missing_syscall.h b/src/basic/missing_syscall.h index d7d4e9e459..d15b4bf78e 100644 --- a/src/basic/missing_syscall.h +++ b/src/basic/missing_syscall.h @@ -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 |