From b452ca3d23163de6859dc3f9a89ae2edca195591 Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Thu, 11 May 2023 15:26:22 -0400 Subject: [PATCH] Add include . MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: Error: implicit declaration of function ‘blkdev_put’ Previously this was an `extern` in and included implicitly, hence the need to hard include it now. Signed-off-by: Auke Kok --- kmod/src/super.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kmod/src/super.c b/kmod/src/super.c index 10016a74..fecd2132 100644 --- a/kmod/src/super.c +++ b/kmod/src/super.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include