commit | 523179773449a458b98e7047470cb39614886cc5 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Sat Apr 27 08:11:05 2024 -0600 |
committer | Tom Rini <trini@konsulko.com> | Mon May 06 15:05:04 2024 -0600 |
tree | e764b0526dff007aedbe4d99c96b8a2b40614544 | |
parent | 7235660593246a7d876bb56d8bcc6d07a17ceaa6 [diff] [blame] |
fs: Remove <common.h> and add needed includes Remove <common.h> from all "fs/" files and when needed add missing include files directly. Signed-off-by: Tom Rini <trini@konsulko.com>
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 7d4095d..8ec545e 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c
@@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0+ #include <stdlib.h> -#include <common.h> +#include <errno.h> #include <fs_internal.h> #include "ctree.h" #include "disk-io.h"