From bd707885127bd00f3ca2458238866713c69ee97f Mon Sep 17 00:00:00 2001 From: akuker Date: Thu, 9 Jul 2020 13:33:57 -0500 Subject: [PATCH] Added ability to use --help as well as -h to show usage info --- src/raspberrypi/rascsi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raspberrypi/rascsi.cpp b/src/raspberrypi/rascsi.cpp index 87b76a8..5c538f3 100644 --- a/src/raspberrypi/rascsi.cpp +++ b/src/raspberrypi/rascsi.cpp @@ -79,7 +79,7 @@ void Banner(int argc, char* argv[]) FPRT(stdout,"Connect type : %s\n", CONNECT_DESC); if ((argc > 1 && strcmp(argv[1], "-h") == 0) || - (argc > 1 && strcmp(argv[1], "--help") == 0){ + (argc > 1 && strcmp(argv[1], "--help") == 0)){ FPRT(stdout,"\n"); FPRT(stdout,"Usage: %s [-IDn FILE] ...\n\n", argv[0]); FPRT(stdout," n is SCSI identification number(0-7).\n");