diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-11-16 12:39:16 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-11-16 12:39:16 +0000 |
commit | 7c2db5c1988da00c101cc2aeb8767f18a1fe9eb9 (patch) | |
tree | 91c162970616efec52217652571a0b140601024e /coreutils/mv.c | |
parent | a702457eac1d2b014f108f78605d7fb6424b5844 (diff) | |
download | busybox-w32-7c2db5c1988da00c101cc2aeb8767f18a1fe9eb9.tar.gz busybox-w32-7c2db5c1988da00c101cc2aeb8767f18a1fe9eb9.tar.bz2 busybox-w32-7c2db5c1988da00c101cc2aeb8767f18a1fe9eb9.zip |
- use standard-imposed constants some more
Diffstat (limited to 'coreutils/mv.c')
-rw-r--r-- | coreutils/mv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mv.c b/coreutils/mv.c index 5d0b51561..d8dc6c06b 100644 --- a/coreutils/mv.c +++ b/coreutils/mv.c | |||
@@ -58,7 +58,7 @@ int mv_main(int argc, char **argv) | |||
58 | if (argc == 2) { | 58 | if (argc == 2) { |
59 | dest_exists = cp_mv_stat(last, &dest_stat); | 59 | dest_exists = cp_mv_stat(last, &dest_stat); |
60 | if (dest_exists < 0) { | 60 | if (dest_exists < 0) { |
61 | return 1; | 61 | return EXIT_FAILURE; |
62 | } | 62 | } |
63 | 63 | ||
64 | if (!(dest_exists & 2)) { | 64 | if (!(dest_exists & 2)) { |