aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@redhat.com>2018-01-25 13:55:01 -0600
committerEric Sandeen <sandeen@redhat.com>2018-01-25 13:55:01 -0600
commit12f365e22389e494b9be6cdf1382327b1d1b64ed (patch)
tree9844d3e36e48c618b106f0434fc5c08cc92c115d
parenta1c5615eecf3ca4bcd7442326c228b349ee2fd79 (diff)
downloadxfsprogs-dev-12f365e22389e494b9be6cdf1382327b1d1b64ed.tar.gz
xfs_logprint: fix v3 inode formatting
Line up flags2/cowextsize line with all the others, using tabs. Fixes: 1fe708d60 ("xfs_logprint: support cowextsize reporting in log contents") Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
-rw-r--r--logprint/log_print_all.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/logprint/log_print_all.c b/logprint/log_print_all.c
index c80bf3478a..cdaf77bf97 100644
--- a/logprint/log_print_all.c
+++ b/logprint/log_print_all.c
@@ -273,7 +273,7 @@ xlog_recover_print_inode_core(
(int)di->di_forkoff, di->di_dmevmask, (int)di->di_dmstate,
(int)di->di_flags, di->di_gen);
if (di->di_version == 3) {
- printf(_("flags2 0x%llx cowextsize 0x%x\n"),
+ printf(_(" flags2 0x%llx cowextsize 0x%x\n"),
(unsigned long long)di->di_flags2, di->di_cowextsize);
}
}