summaryrefslogtreecommitdiff
path: root/src/dd.c
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2016-01-01 14:23:01 +0000
committerPádraig Brady <P@draigBrady.com>2016-01-01 14:24:19 +0000
commitaaf8d80f1d31289fd71a4be2749ba033693369f3 (patch)
tree1350ddb71f7107d1cc876cf12311751a4aa680b8 /src/dd.c
parentb16e999f553b682e74e0a56750f649da05130c4f (diff)
downloadcoreutils-aaf8d80f1d31289fd71a4be2749ba033693369f3.tar.xz
maint: avoid a sc_long_lines failure in recent commit
* src/dd.c (alloc_ibuf): Shorten line length.
Diffstat (limited to 'src/dd.c')
-rw-r--r--src/dd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dd.c b/src/dd.c
index ed6047f91..d5d01f38a 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -692,7 +692,8 @@ alloc_ibuf (void)
uintmax_t ibs = input_blocksize;
char hbuf[LONGEST_HUMAN_READABLE + 1];
error (EXIT_FAILURE, 0,
- _("memory exhausted by input buffer of size %"PRIuMAX" bytes (%s)"),
+ _("memory exhausted by input buffer of size %"PRIuMAX
+ " bytes (%s)"),
ibs,
human_readable (input_blocksize, hbuf,
human_opts | human_base_1024, 1, 1));