There were multiple places where the code didn't seem to follow any format. This patch makes the style uniform.
Signed-off-by: Robert Love <[email protected]> --- fcoeadm.c | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/fcoeadm.c b/fcoeadm.c index e38064d..e7ffa00 100644 --- a/fcoeadm.c +++ b/fcoeadm.c @@ -60,15 +60,15 @@ fcoeadm_help(void) { printf("%s\n", fcoeadm_version); printf("Usage: %s\n" - "\t [-c|--create] <ethX>\n" - "\t [-d|--destroy] <ethX>\n" - "\t [-r|--reset] <ethX>\n" - "\t [-i|--interface] [<ethX>]\n" - "\t [-t|--target] [<ethX>]\n" - "\t [-l|--lun] [<target port_id> [<lun_id>]]\n" - "\t [-s|--stats] <ethX> [-n <interval>]\n" - "\t [-v|--version]\n" - "\t [-h|--help]\n\n", progname); + "\t [-c|--create] <ethX>\n" + "\t [-d|--destroy] <ethX>\n" + "\t [-r|--reset] <ethX>\n" + "\t [-i|--interface] [<ethX>]\n" + "\t [-t|--target] [<ethX>]\n" + "\t [-l|--lun] [<target port_id> [<lun_id>]]\n" + "\t [-s|--stats] <ethX> [-n <interval>]\n" + "\t [-v|--version]\n" + "\t [-h|--help]\n\n", progname); } /* @@ -494,7 +494,7 @@ int main(int argc, char *argv[]) if (fcoeadm_validate_interface( opt_info->ifname, fchost, FCHOSTBUFLEN)) - goto error; + goto error; } opt_info->a_flag = 1; rc = fcoeadm_display_adapter_info(opt_info); _______________________________________________ devel mailing list [email protected] http://www.open-fcoe.org/mailman/listinfo/devel
