diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-05-02 08:26:03 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-05-02 08:26:31 -0600 |
commit | 95bcdd2f4bdd0dc702d9eb77675a31c0f0935dc6 (patch) | |
tree | 295c952d9ba9d3f9a2938a983630fd04a970f7ef | |
parent | 7ad5e52d4d2f91203615cd738e56aba10ad8b8f6 (diff) | |
download | liburing-95bcdd2f4bdd0dc702d9eb77675a31c0f0935dc6.tar.gz liburing-95bcdd2f4bdd0dc702d9eb77675a31c0f0935dc6.tar.bz2 |
test/statx: use regular stat include
Link: https://github.com/axboe/liburing/issues/578
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | test/statx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/statx.c b/test/statx.c index c0f9e9c..5fa086e 100644 --- a/test/statx.c +++ b/test/statx.c @@ -11,7 +11,7 @@ #include <fcntl.h> #include <sys/types.h> #include <sys/syscall.h> -#include <linux/stat.h> +#include <sys/stat.h> #include "helpers.h" #include "liburing.h" |