diff options
author | Jim Meyering <jim@meyering.net> | 1996-05-28 23:40:11 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-05-28 23:40:11 +0000 |
commit | 55dcae1c8da9fb22e30ccbf57dcdb8f165d5ee02 (patch) | |
tree | 08315577a6ffb69079a4c24ef68e081d4c059958 | |
parent | a01eaef0fd123ca3afb335f6692e9680e1cf8f68 (diff) | |
download | coreutils-55dcae1c8da9fb22e30ccbf57dcdb8f165d5ee02.tar.xz |
(main): Don't mark "%s" as a translatable string.
From Göran Uddeborg.
-rw-r--r-- | src/mv.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -471,9 +471,9 @@ main (int argc, char **argv) if (argc < optind + 2) { - error (0, 0, _("%s"), (argc == optind - ? _("missing file arguments") - : _("missing file argument"))); + error (0, 0, "%s", (argc == optind + ? _("missing file arguments") + : _("missing file argument"))); usage (1); } |