diff options
Diffstat (limited to 'src/commands/subvolume.rs')
-rw-r--r-- | src/commands/subvolume.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/subvolume.rs b/src/commands/subvolume.rs index 0691e34d..a5ebcf53 100644 --- a/src/commands/subvolume.rs +++ b/src/commands/subvolume.rs @@ -37,9 +37,9 @@ enum Subcommands { } pub fn subvolume(argv: Vec<String>) -> i32 { - let args = Cli::parse_from(argv); + let cli = Cli::parse_from(argv); - match args.subcommands { + match cli.subcommands { Subcommands::Create { targets } => { for target in targets { if let Some(dirname) = target.parent() { |