X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=fs%2Fbinfmt_misc.c;h=bb202ad369d534859843a01c34d87733b8482467;hb=refs%2Fheads%2Fsandbox%2Flstelmach%2Fvirgl;hp=e1eae7ea823aeb2d5d0b245511658fcdb3a3ed09;hpb=c7d4b15372bde442059c7d6415afeba073a09474;p=platform%2Fkernel%2Flinux-starfive.git diff --git a/fs/binfmt_misc.c b/fs/binfmt_misc.c index e1eae7e..bb202ad 100644 --- a/fs/binfmt_misc.c +++ b/fs/binfmt_misc.c @@ -44,10 +44,10 @@ static LIST_HEAD(entries); static int enabled = 1; enum {Enabled, Magic}; -#define MISC_FMT_PRESERVE_ARGV0 (1 << 31) -#define MISC_FMT_OPEN_BINARY (1 << 30) -#define MISC_FMT_CREDENTIALS (1 << 29) -#define MISC_FMT_OPEN_FILE (1 << 28) +#define MISC_FMT_PRESERVE_ARGV0 (1UL << 31) +#define MISC_FMT_OPEN_BINARY (1UL << 30) +#define MISC_FMT_CREDENTIALS (1UL << 29) +#define MISC_FMT_OPEN_FILE (1UL << 28) typedef struct { struct list_head list;