From 022a560033b703c6a600f19b1d3b1babaec69c06 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 7 Sep 2021 19:33:24 +0200 Subject: [PATCH] btrfs-progs: move props.h to cmds/ This is included only by the command line handler, move it there. Signed-off-by: David Sterba --- cmds/property.c | 2 +- props.h => cmds/props.h | 0 props.c | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename props.h => cmds/props.h (100%) diff --git a/cmds/property.c b/cmds/property.c index 62cadf71..7ae4d21f 100644 --- a/cmds/property.c +++ b/cmds/property.c @@ -23,7 +23,7 @@ #include #include "cmds/commands.h" -#include "props.h" +#include "cmds/props.h" #include "kernel-shared/ctree.h" #include "common/utils.h" #include "common/help.h" diff --git a/props.h b/cmds/props.h similarity index 100% rename from props.h rename to cmds/props.h diff --git a/props.c b/props.c index 81509e48..2cc3dd01 100644 --- a/props.c +++ b/props.c @@ -27,7 +27,7 @@ #include "cmds/commands.h" #include "common/utils.h" #include "common/open-utils.h" -#include "props.h" +#include "cmds/props.h" #define XATTR_BTRFS_PREFIX "btrfs." #define XATTR_BTRFS_PREFIX_LEN (sizeof(XATTR_BTRFS_PREFIX) - 1)