From 4e751144ba287ed92de644eabb8d8a2f4971ecbb Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Fri, 24 Jun 2011 11:03:14 -0700 Subject: integck: fix build error (MS_DIRSYNC, MS_RELATIME) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Need to include , at least for my build system. Otherwise, you can't build the 'tests'. integck.c: In function ‘parse_mount_options’: integck.c:2862: error: ‘MS_DIRSYNC’ undeclared (first use in this function) integck.c:2862: error: (Each undeclared identifier is reported only once integck.c:2862: error: for each function it appears in.) integck.c:2872: error: ‘MS_RELATIME’ undeclared (first use in this function) Signed-off-by: Brian Norris Signed-off-by: Artem Bityutskiy --- tests/fs-tests/integrity/integck.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tests') diff --git a/tests/fs-tests/integrity/integck.c b/tests/fs-tests/integrity/integck.c index 54e5ddc..30322cd 100644 --- a/tests/fs-tests/integrity/integck.c +++ b/tests/fs-tests/integrity/integck.c @@ -36,6 +36,7 @@ #include #include #include +#include #define PROGRAM_VERSION "1.1" #define PROGRAM_NAME "integck" -- cgit v1.2.3