With a tab stop of 8, the alignment is off. Replace the hard tabs with spaces to match the file.
Fixes: 284d5633be37 ("Tools: add online/offline hotplug user interfaces") Signed-off-by: Jason Andryuk <jason.andr...@amd.com> --- tools/misc/xen-hptool.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/misc/xen-hptool.c b/tools/misc/xen-hptool.c index d850404e31..590810b6eb 100644 --- a/tools/misc/xen-hptool.c +++ b/tools/misc/xen-hptool.c @@ -56,7 +56,7 @@ static int hp_mem_online_func(int argc, char *argv[]) fprintf(stderr, "Onlining page mfn %lx is broken, " "Memory online failed\n", mfn); ret = -1; - } + } else if (status & PG_ONLINE_ONLINED) printf("Memory mfn %lx onlined successfully\n", mfn); else @@ -85,14 +85,14 @@ static int hp_mem_query_func(int argc, char *argv[]) fprintf(stderr, "Querying page mfn %lx failed, error %x\n", mfn, errno); else { - printf("Memory Status %x: [", status); + printf("Memory Status %x: [", status); if ( status & PG_OFFLINE_STATUS_OFFLINE_PENDING) printf(" PAGE_OFFLINE_PENDING "); if ( status & PG_OFFLINE_STATUS_BROKEN ) printf(" PAGE_BROKEND "); if ( status & PG_OFFLINE_STATUS_OFFLINED ) printf(" PAGE_OFFLINED "); - else + else printf(" PAGE_ONLINED "); printf("]\n"); } -- 2.49.0