diff options
author | Jim Meyering <jim@meyering.net> | 2002-03-19 08:49:28 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-03-19 08:49:28 +0000 |
commit | 73c74c33e6455861256715c17216ac6622fc97e2 (patch) | |
tree | 1aceb0353a4e2487189a350ad43d441a7d4b374d /src | |
parent | c1635e0379280457d45a0975f3a92589c3769e5d (diff) | |
download | coreutils-73c74c33e6455861256715c17216ac6622fc97e2.tar.xz |
use only one space after semicolon
Diffstat (limited to 'src')
-rw-r--r-- | src/copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/copy.c b/src/copy.c index f9ad0a388..f37fe62f6 100644 --- a/src/copy.c +++ b/src/copy.c @@ -1219,7 +1219,7 @@ copy_internal (const char *src_path, const char *dst_path, { /* Use the value of errno from the failed rename. */ error (0, errno, - _("inter-device move failed: %s to %s; unable to remove target"), + _("inter-device move failed: %s to %s; unable to remove target"), quote_n (0, src_path), quote_n (1, dst_path)); return 1; } |