]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Correct indentation of the two just-split lines.
authorJim Meyering <jim@meyering.net>
Fri, 1 Apr 2005 22:29:15 +0000 (22:29 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 1 Apr 2005 22:29:15 +0000 (22:29 +0000)
src/pr.c

index 037e05f375e01bb4644fef4122fe014a4c13fc3e..c5f5f28e613ae7f1a75a44bc5bfc79512a2b6afa 100644 (file)
--- a/src/pr.c
+++ b/src/pr.c
@@ -1059,7 +1059,7 @@ main (int argc, char **argv)
            if (xstrtol (optarg, NULL, 10, &tmp_long, "") != LONGINT_OK
                || tmp_long <= 0 || tmp_long > INT_MAX)
              error (EXIT_FAILURE, 0,
-                _("`-w PAGE_WIDTH' invalid number of characters: `%s'"),
+                    _("`-w PAGE_WIDTH' invalid number of characters: `%s'"),
                     optarg);
            if (!truncate_lines)
              chars_per_line = tmp_long;
@@ -1073,7 +1073,7 @@ main (int argc, char **argv)
            if (xstrtol (optarg, NULL, 10, &tmp_long, "") != LONGINT_OK
                || tmp_long <= 0 || tmp_long > INT_MAX)
              error (EXIT_FAILURE, 0,
-                _("`-W PAGE_WIDTH' invalid number of characters: `%s'"),
+                    _("`-W PAGE_WIDTH' invalid number of characters: `%s'"),
                     optarg);
            chars_per_line = tmp_long;
            break;