From 58cbebd58aad0fc9be5ad5ce5b2f3161fdbfbaac Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Fri, 20 Jun 2003 03:25:23 +0000 Subject: [PATCH] Fix ordering of values in a print statement, trivial typo --- io/pwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2