From 73fbe2323af6a2b4d807c80069657bf1449b3bff Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 24 Sep 2010 22:22:09 -0400 Subject: [PATCH] libext2fs: Change EXT2_FLAG_DIRECT_IO to avoid conflict with devel branch The development branch of e2fsprogs already has a code point assigned in conflict with EXT2_FLAG_DIRECT_IO. Fix this. Signed-off-by: "Theodore Ts'o" --- lib/ext2fs/ext2fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index 8dac89a..cf76562 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -173,7 +173,7 @@ typedef struct ext2_file *ext2_file_t; #define EXT2_FLAG_EXCLUSIVE 0x4000 #define EXT2_FLAG_SOFTSUPP_FEATURES 0x8000 #define EXT2_FLAG_NOFREE_ON_ERROR 0x10000 -#define EXT2_FLAG_DIRECT_IO 0x20000 +#define EXT2_FLAG_DIRECT_IO 0x80000 /* * Special flag in the ext2 inode i_flag field that means that this is -- 1.8.3.1