]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs_logprint: fix v3 inode formatting
authorEric Sandeen <sandeen@redhat.com>
Thu, 25 Jan 2018 19:55:01 +0000 (13:55 -0600)
committerEric Sandeen <sandeen@redhat.com>
Thu, 25 Jan 2018 19:55:01 +0000 (13:55 -0600)
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>
logprint/log_print_all.c

index c80bf3478ad9b060bb640d8fe3edb28191b338cc..cdaf77bf976c185cbbd5c47ae685088fcdb85645 100644 (file)
@@ -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);
        }
 }