diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-08-10 18:01:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-11 08:58:59 -0700 |
commit | 13bcbc008790b05413c9a16763b423c206528c0a (patch) | |
tree | 0dc452f66b3d6c91fe54d98f1b9c0b0706d6a245 /include | |
parent | 37713308d89f17c0f73e88b07138d6ca20bfe686 (diff) | |
download | linux-13bcbc008790b05413c9a16763b423c206528c0a.tar.gz linux-13bcbc008790b05413c9a16763b423c206528c0a.tar.bz2 linux-13bcbc008790b05413c9a16763b423c206528c0a.zip |
include/linux/fs.h: complete hexification of FMODE_* constants
One straggler which was missed due to merge ordering issues.
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Eric Paris <eparis@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 1542e0e52b2e..267d02630517 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -93,7 +93,7 @@ struct inodes_stat_t { #define FMODE_RANDOM ((__force fmode_t)0x1000) /* File was opened by fanotify and shouldn't generate fanotify events */ -#define FMODE_NONOTIFY ((__force fmode_t)16777216) /* 0x1000000 */ +#define FMODE_NONOTIFY ((__force fmode_t)0x1000000) /* * The below are the various read and write types that we support. Some of |