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>
master
Gene Czarcinski 2013-01-26 13:10:33 -05:00 committed by David Sterba
parent 7f04a61b6d
commit 272c049152
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ static int cmd_qgroup_limit(int argc, char **argv)
int ret = 0;
int fd;
int e;
char *path;
char *path = NULL;
struct btrfs_ioctl_qgroup_limit_args args;
unsigned long long size;
int compressed = 0;