From d14c3bfb8b6b6e6f58ec26c64e226e383ae7e541 Mon Sep 17 00:00:00 2001 From: Mike Gerdts Date: Sat, 18 Dec 2021 20:38:50 +0000 Subject: [PATCH] blobcli: list help options in consistent order Signed-off-by: Mike Gerdts Change-Id: I38375670125129d0b728077eb4f7a11b23a9f3bb Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11250 Community-CI: Broadcom CI Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins Reviewed-by: Ben Walker Reviewed-by: Paul Luse Reviewed-by: Jim Harris --- examples/blob/cli/blobcli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/blob/cli/blobcli.c b/examples/blob/cli/blobcli.c index abdfafa47..368a8f9b3 100644 --- a/examples/blob/cli/blobcli.c +++ b/examples/blob/cli/blobcli.c @@ -161,10 +161,10 @@ print_cmds(void) printf("\t-p - set the superblob to the ID provided\n"); printf("\t-r name - remove xattr name/value pair\n"); printf("\t-s | bs - show blob info or blobstore info\n"); - printf("\t-x name value - set xattr name/value pair\n"); - printf("\t-X - exit when in interactive shell mode\n"); printf("\t-S - enter interactive shell mode\n"); printf("\t-T - automated script mode\n"); + printf("\t-x name value - set xattr name/value pair\n"); + printf("\t-X - exit when in interactive shell mode\n"); printf("\n"); }