fsck.f2fs: include f2fs_fs.h from local directory
authorChao Yu <yuchao0@huawei.com>
Wed, 31 Jul 2019 13:01:05 +0000 (21:01 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Tue, 20 Aug 2019 18:23:58 +0000 (11:23 -0700)
f2fs_fs.h locats in local directory rather than system one, fix it.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fsck/f2fs.h

index 52e68ec..4091487 100644 (file)
@@ -11,7 +11,6 @@
 #ifndef _F2FS_H_
 #define _F2FS_H_
 
-#include <f2fs_fs.h>
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.h>
@@ -27,6 +26,8 @@
 #include <sys/mount.h>
 #include <assert.h>
 
+#include "f2fs_fs.h"
+
 #define EXIT_ERR_CODE          (-1)
 #define ver_after(a, b) (typecheck(unsigned long long, a) &&            \
                typecheck(unsigned long long, b) &&                     \