mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-11 03:31:17 +00:00
Btrfs-progs: Fix trival compiler error in cmds-qgroup.c
The compiler does not realize that usage() never returns. Initializing the variable keeps it quiet. Signed-off-by: Gene Czarcinski <gene@czarc.net>
This commit is contained in:
parent
7f04a61b6d
commit
272c049152
@ -338,7 +338,7 @@ static int cmd_qgroup_limit(int argc, char **argv)
|
|||||||
int ret = 0;
|
int ret = 0;
|
||||||
int fd;
|
int fd;
|
||||||
int e;
|
int e;
|
||||||
char *path;
|
char *path = NULL;
|
||||||
struct btrfs_ioctl_qgroup_limit_args args;
|
struct btrfs_ioctl_qgroup_limit_args args;
|
||||||
unsigned long long size;
|
unsigned long long size;
|
||||||
int compressed = 0;
|
int compressed = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user