From aaf8d80f1d31289fd71a4be2749ba033693369f3 Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Fri, 1 Jan 2016 14:23:01 +0000 Subject: maint: avoid a sc_long_lines failure in recent commit * src/dd.c (alloc_ibuf): Shorten line length. --- src/dd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)); -- cgit v1.2.3-54-g00ecf