From 1ceb06bfcc4f8ff51e7effed66c454cf7b43b39d Mon Sep 17 00:00:00 2001 From: Rolf Eike Beer Date: Fri, 12 Jun 2020 10:12:24 +0200 Subject: lib: fix include path for blkid.h $ pkg-config --cflags blkid -I/usr/include/blkid The "blkid/" directory is actually part of the include path. This usually still works because most people have the path one level up in their default include path. Signed-off-by: Rolf Eike Beer Reviewed-by: Chao Yu Signed-off-by: Jaegeuk Kim --- mkfs/f2fs_format_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkfs/f2fs_format_main.c b/mkfs/f2fs_format_main.c index 282c94e..3d86c44 100644 --- a/mkfs/f2fs_format_main.c +++ b/mkfs/f2fs_format_main.c @@ -23,7 +23,7 @@ #include "config.h" #ifdef HAVE_LIBBLKID -# include +# include #endif #include "f2fs_fs.h" -- cgit 1.2.3-korg