summaryrefslogtreecommitdiff
path: root/src/pr.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-04-01 20:06:22 +0000
committerJim Meyering <jim@meyering.net>2005-04-01 20:06:22 +0000
commit91377273e65ad8e8c1df47813cc83fb3bcf3597b (patch)
tree906efc434a458f62280adac26a335c0f69198972 /src/pr.c
parentae9d3a5ab4ea6217097140d7a47b1736b62b5f66 (diff)
downloadcoreutils-91377273e65ad8e8c1df47813cc83fb3bcf3597b.tar.xz
split two longer-than-80-column lines
Diffstat (limited to 'src/pr.c')
-rw-r--r--src/pr.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pr.c b/src/pr.c
index 7512f9e2e..037e05f37 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -1059,7 +1059,8 @@ 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'"), optarg);
+ _("`-w PAGE_WIDTH' invalid number of characters: `%s'"),
+ optarg);
if (!truncate_lines)
chars_per_line = tmp_long;
break;
@@ -1072,7 +1073,8 @@ 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'"), optarg);
+ _("`-W PAGE_WIDTH' invalid number of characters: `%s'"),
+ optarg);
chars_per_line = tmp_long;
break;
}