From: Nathan Scott Date: Fri, 20 Jun 2003 03:25:23 +0000 (+0000) Subject: Fix ordering of values in a print statement, trivial typo X-Git-Tag: v2.6.0~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=58cbebd58aad0fc9be5ad5ce5b2f3161fdbfbaac;p=thirdparty%2Fxfsprogs-dev.git Fix ordering of values in a print statement, trivial typo --- diff --git a/io/pwrite.c b/io/pwrite.c index 1a42bd123..efc6042ac 100644 --- a/io/pwrite.c +++ b/io/pwrite.c @@ -165,7 +165,7 @@ pwrite_f( close(fd); return 0; } - printf(_("wrote %u/%u bytes at offset %llu\n"), count, total, offset); + printf(_("wrote %u/%u bytes at offset %llu\n"), total, count, offset); close(fd); return 0; }