diff options
author | Pádraig Brady <P@draigBrady.com> | 2016-01-01 14:23:01 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2016-01-01 14:24:19 +0000 |
commit | aaf8d80f1d31289fd71a4be2749ba033693369f3 (patch) | |
tree | 1350ddb71f7107d1cc876cf12311751a4aa680b8 /src | |
parent | b16e999f553b682e74e0a56750f649da05130c4f (diff) | |
download | coreutils-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')
-rw-r--r-- | src/dd.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)); |