* src/dd.c (alloc_[io]buf): I committed a stale patch that omitted
the casts needed on 32 bit.
Identified by http://hydra.nixos.org/build/
17610188
if (!real_buf)
error (EXIT_FAILURE, 0,
_("memory exhausted by input buffer of size %"PRIuMAX" bytes (%s)"),
- input_blocksize, human_size (input_blocksize));
+ (uintmax_t) input_blocksize, human_size (input_blocksize));
real_buf += SWAB_ALIGN_OFFSET; /* allow space for swab */
error (EXIT_FAILURE, 0,
_("memory exhausted by output buffer of size %"PRIuMAX
" bytes (%s)"),
- output_blocksize, human_size (output_blocksize));
+ (uintmax_t) output_blocksize, human_size (output_blocksize));
obuf = ptr_align (real_obuf, page_size);
}
else