diff mbox

btrfs-progs: fix incorrect column order

Message ID 1458299304-4674-1-git-send-email-fougner89@gmail.com (mailing list archive)
State Accepted
Headers show

Commit Message

Alexander Fougner March 18, 2016, 11:08 a.m. UTC
Signed-off-by: Alexander Fougner <fougner89@gmail.com>
---
 cmds-fi-du.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

David Sterba March 18, 2016, 1:30 p.m. UTC | #1
On Fri, Mar 18, 2016 at 12:08:24PM +0100, Alexander Fougner wrote:
> Signed-off-by: Alexander Fougner <fougner89@gmail.com>

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/cmds-fi-du.c b/cmds-fi-du.c
index 6f3ef3d..2ffd917 100644
--- a/cmds-fi-du.c
+++ b/cmds-fi-du.c
@@ -505,8 +505,8 @@  static int du_add_file(const char *filename, int dirfd,
 		} else {
 			printf("%10s  %10s  %10s  %s\n",
 			       pretty_size_mode(file_total, unit_mode),
-			       "-",
-			       pretty_size_mode(excl, unit_mode), path);
+			       pretty_size_mode(excl, unit_mode),
+			       "-", path);
 		}
 	}