diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2023-01-02 17:04:44 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2023-01-02 17:04:44 +0100 |
commit | cadf57b3afac5f77c75516d82aed4bc845b5d704 (patch) | |
tree | 4339743b4179660aa7c5a6389bb154d61628a134 | |
parent | e7977df2cae2ac2c5da38f77488ec9e97d10c33b (diff) | |
download | busybox-w32-cadf57b3afac5f77c75516d82aed4bc845b5d704.tar.gz busybox-w32-cadf57b3afac5f77c75516d82aed4bc845b5d704.tar.bz2 busybox-w32-cadf57b3afac5f77c75516d82aed4bc845b5d704.zip |
mv: fix error in !VERBOSE configs
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/mv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/mv.c b/coreutils/mv.c index fd2422683..cf6169a1e 100644 --- a/coreutils/mv.c +++ b/coreutils/mv.c | |||
@@ -71,9 +71,9 @@ int mv_main(int argc, char **argv) | |||
71 | "no-target-directory\0" No_argument "T" | 71 | "no-target-directory\0" No_argument "T" |
72 | "target-directory\0" Required_argument "t" | 72 | "target-directory\0" Required_argument "t" |
73 | IF_FEATURE_VERBOSE( | 73 | IF_FEATURE_VERBOSE( |
74 | "verbose\0" No_argument "v", | 74 | "verbose\0" No_argument "v" |
75 | &last | ||
76 | ) | 75 | ) |
76 | , &last | ||
77 | ); | 77 | ); |
78 | argc -= optind; | 78 | argc -= optind; |
79 | argv += optind; | 79 | argv += optind; |