diff options
Diffstat (limited to 'coreutils/mv.c')
-rw-r--r-- | coreutils/mv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coreutils/mv.c b/coreutils/mv.c index 064407838..4cd0fcfba 100644 --- a/coreutils/mv.c +++ b/coreutils/mv.c | |||
@@ -21,7 +21,7 @@ | |||
21 | #include "libcoreutils/coreutils.h" | 21 | #include "libcoreutils/coreutils.h" |
22 | 22 | ||
23 | #if ENABLE_FEATURE_MV_LONG_OPTIONS | 23 | #if ENABLE_FEATURE_MV_LONG_OPTIONS |
24 | static const char mv_longopts[] = | 24 | static const char mv_longopts[] ALIGN1 = |
25 | "interactive\0" No_argument "i" | 25 | "interactive\0" No_argument "i" |
26 | "force\0" No_argument "f" | 26 | "force\0" No_argument "f" |
27 | ; | 27 | ; |
@@ -30,7 +30,8 @@ static const char mv_longopts[] = | |||
30 | #define OPT_FILEUTILS_FORCE 1 | 30 | #define OPT_FILEUTILS_FORCE 1 |
31 | #define OPT_FILEUTILS_INTERACTIVE 2 | 31 | #define OPT_FILEUTILS_INTERACTIVE 2 |
32 | 32 | ||
33 | static const char fmt[] = "cannot overwrite %sdirectory with %sdirectory"; | 33 | static const char fmt[] ALIGN1 = |
34 | "cannot overwrite %sdirectory with %sdirectory"; | ||
34 | 35 | ||
35 | int mv_main(int argc, char **argv); | 36 | int mv_main(int argc, char **argv); |
36 | int mv_main(int argc, char **argv) | 37 | int mv_main(int argc, char **argv) |