Just a cleanup to avoid abuse of int.
Signed-off-by: Qu Wenruo <wqu@xxxxxxxx>
---
cmds-qgroup.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/cmds-qgroup.c b/cmds-qgroup.c
index 93206900693d..7a505443d271 100644
--- a/cmds-qgroup.c
+++ b/cmds-qgroup.c
@@ -40,7 +40,7 @@ static int _cmd_qgroup_assign(int assign, int argc, char **argv,
{
int ret = 0;
int fd;
- int rescan = 0;
+ bool rescan = false;
char *path;
struct btrfs_ioctl_qgroup_assign_args args;
DIR *dirstream = NULL;
@@ -61,10 +61,10 @@ static int _cmd_qgroup_assign(int assign, int argc, char **argv,
break;
switch (c) {
case GETOPT_VAL_RESCAN:
- rescan = 1;
+ rescan = true;
break;
case GETOPT_VAL_NO_RESCAN:
- rescan = 0;
+ rescan = false;
break;
default:
/* Usage printed by the caller */
--
2.18.0
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html