summaryrefslogtreecommitdiff
path: root/cmds-qgroup.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmds-qgroup.c')
-rw-r--r--cmds-qgroup.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmds-qgroup.c b/cmds-qgroup.c
index 4ba07ae..22be809 100644
--- a/cmds-qgroup.c
+++ b/cmds-qgroup.c
@@ -36,7 +36,6 @@ static int qgroup_assign(int assign, int argc, char **argv)
{
int ret = 0;
int fd;
- int e;
int rescan = 0;
char *path;
struct btrfs_ioctl_qgroup_assign_args args;
@@ -84,9 +83,8 @@ static int qgroup_assign(int assign, int argc, char **argv)
return 1;
ret = ioctl(fd, BTRFS_IOC_QGROUP_ASSIGN, &args);
- e = errno;
if (ret < 0) {
- error("unable to assign quota group: %s", strerror(e));
+ error("unable to assign quota group: %s", strerror(errno));
close_file_or_dir(fd, dirstream);
return 1;
}