]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Fix ordering of values in a print statement, trivial typo
authorNathan Scott <nathans@sgi.com>
Fri, 20 Jun 2003 03:25:23 +0000 (03:25 +0000)
committerNathan Scott <nathans@sgi.com>
Fri, 20 Jun 2003 03:25:23 +0000 (03:25 +0000)
io/pwrite.c

index 1a42bd1231353bb02c9fc6786cfc9456d912a1c0..efc6042ac3b9416fdef7900c8ea4b7c4c83020fa 100644 (file)
@@ -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;
 }