diff options
Diffstat (limited to 'src/mount/mount-tool.c')
-rw-r--r-- | src/mount/mount-tool.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mount/mount-tool.c b/src/mount/mount-tool.c index ed6578d540..10bb5dda63 100644 --- a/src/mount/mount-tool.c +++ b/src/mount/mount-tool.c @@ -344,9 +344,8 @@ static int parse_argv(int argc, char *argv[]) { arg_mount_what = canonicalize_file_name(p); if (!arg_mount_what) return log_error_errno(errno, "Failed to canonicalize path: %m"); - } else { - arg_mount_what = strdup(argv[optind+1]); + arg_mount_what = strdup(argv[optind]); if (!arg_mount_what) return log_oom(); |