]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: avoid a sc_long_lines failure in recent commit
authorPádraig Brady <P@draigBrady.com>
Fri, 1 Jan 2016 14:23:01 +0000 (14:23 +0000)
committerPádraig Brady <P@draigBrady.com>
Fri, 1 Jan 2016 14:24:19 +0000 (14:24 +0000)
* src/dd.c (alloc_ibuf): Shorten line length.

src/dd.c

index ed6047f910dbe751c0998d2472027afc38acada6..d5d01f38a07bd2690304ee704e86937e8260116b 100644 (file)
--- 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));