diff options
author | Chengguang Xu <cgxu519@gmx.com> | 2018-06-13 00:05:14 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-10-18 02:04:59 -0400 |
commit | 3642b29a63674020401e41185ed5b0e3c056ab4a (patch) | |
tree | 51c3475b78b1337b7d917bf4ff7a9ee9f1c0d60e | |
parent | 515f1867addaba49c1c6ac73abfaffbc192c1db4 (diff) |
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>
-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) | |||
118 | EXOFS_MIN_PID); | 118 | EXOFS_MIN_PID); |
119 | return -EINVAL; | 119 | return -EINVAL; |
120 | } | 120 | } |
121 | s_pid = 1; | 121 | s_pid = true; |
122 | break; | 122 | break; |
123 | case Opt_to: | 123 | case Opt_to: |
124 | if (match_int(&args[0], &option)) | 124 | if (match_int(&args[0], &option)) |