summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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));