diff options
author | Chengguang Xu <cgxu519@gmx.com> | 2018-06-13 12:05:14 +0800 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-10-18 02:04:59 -0400 |
commit | 3642b29a63674020401e41185ed5b0e3c056ab4a (patch) | |
tree | 51c3475b78b1337b7d917bf4ff7a9ee9f1c0d60e /fs/exofs/super.c | |
parent | 515f1867addaba49c1c6ac73abfaffbc192c1db4 (diff) | |
download | linux-3642b29a63674020401e41185ed5b0e3c056ab4a.tar.bz2 |
fs/exofs: only use true/false for asignment of bool type variable
Signed-off-by: Chengguang Xu <cgxu519@gmx.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/exofs/super.c')
-rw-r--r-- | fs/exofs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exofs/super.c b/fs/exofs/super.c index 7d61e3fa378c..906839a4da8f 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)) |