From: Chengguang Xu Date: Wed, 13 Jun 2018 04:05:14 +0000 (+0800) Subject: fs/exofs: only use true/false for asignment of bool type variable X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3642b29a63674020401e41185ed5b0e3c056ab4a;p=linux.git fs/exofs: only use true/false for asignment of bool type variable Signed-off-by: Chengguang Xu Signed-off-by: Al Viro --- diff --git a/fs/exofs/super.c b/fs/exofs/super.c index 7d61e3fa378c2..906839a4da8ff 100644 --- a/fs/exofs/super.c +++ b/fs/exofs/super.c @@ -118,7 +118,7 @@ static int parse_options(char *options, struct exofs_mountopt *opts) EXOFS_MIN_PID); return -EINVAL; } - s_pid = 1; + s_pid = true; break; case Opt_to: if (match_int(&args[0], &option))