From 5c7596058dedb99ab0fbe773cc7ac61a2ffe9fbf Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 28 Oct 2006 12:37:16 +0000 Subject: ls: cleanup part 1 --- coreutils/dd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils/dd.c') diff --git a/coreutils/dd.c b/coreutils/dd.c index d72ca8b7e..78d831525 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -29,8 +29,8 @@ static off_t out_full, out_part, in_full, in_part; static void dd_output_status(int ATTRIBUTE_UNUSED cur_signal) { - fprintf(stderr, OFF_FMT"+"OFF_FMT" records in\n" - OFF_FMT"+"OFF_FMT" records out\n", + fprintf(stderr, "%"OFF_FMT"+%"OFF_FMT" records in\n" + "%"OFF_FMT"+%"OFF_FMT" records out\n", in_full, in_part, out_full, out_part); } -- cgit v1.2.3