btrfs-progs: subvol show: use clean_args_no_options instead of opencoding
authorDavid Sterba <dsterba@suse.com>
Thu, 14 Jan 2016 09:37:02 +0000 (10:37 +0100)
committerDavid Sterba <dsterba@suse.com>
Thu, 14 Jan 2016 10:07:10 +0000 (11:07 +0100)
Signed-off-by: David Sterba <dsterba@suse.com>
cmds-subvolume.c

index 95c23d0..9d9b0af 100644 (file)
@@ -939,20 +939,7 @@ static int cmd_subvol_show(int argc, char **argv)
        int ret = 1;
        DIR *dirstream1 = NULL, *dirstream2 = NULL;
 
-       while (1) {
-               static const struct option long_options[] = {
-                       {NULL, 0, NULL, 0}
-               };
-               int c = getopt_long(argc, argv, "", long_options, NULL);
-
-               if (c < 0)
-                       break;
-
-               switch (c) {
-               default:
-                       usage(cmd_subvol_show_usage);
-               }
-       }
+       clean_args_no_options(argc, argv, cmd_subvol_show_usage);
 
        if (check_argc_exact(argc - optind, 1))
                usage(cmd_subvol_show_usage);