btrfs-progs: tests: fix paths of library-test.c includes

There are now own copies of ioctl.h and kerncompat.h just for libbtrfs
so the library test should use them.

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2023-02-21 01:49:17 +01:00
parent 140234dc0d
commit 8098e6d5c1

View file

@ -17,12 +17,12 @@
*/
#if BTRFS_FLAT_INCLUDES
#include "kerncompat.h"
#include "libbtrfs/kerncompat.h"
#include "libbtrfs/version.h"
#include "libbtrfs/ioctl.h"
#include "kernel-lib/rbtree.h"
#include "kernel-lib/list.h"
#include "kernel-shared/ctree.h"
#include "ioctl.h"
#include "kernel-shared/send.h"
#include "common/send-stream.h"
#include "common/send-utils.h"