updated program name print statement

This commit is contained in:
Paul Cruz 2017-08-10 16:11:59 -07:00
parent 75c3ad947c
commit fc90469587

View File

@ -1015,10 +1015,10 @@ static unsigned readU32FromChar(const char** stringPtr)
return result; return result;
} }
static void help(void) static void help(const char* progPath)
{ {
PRINT("Usage:\n"); PRINT("Usage:\n");
PRINT(" zstd-adaptive [options] [file(s)]\n"); PRINT(" %s [options] [file(s)]\n", progPath);
PRINT("\n"); PRINT("\n");
PRINT("Options:\n"); PRINT("Options:\n");
PRINT(" -oFILE : specify the output file name\n"); PRINT(" -oFILE : specify the output file name\n");
@ -1067,7 +1067,7 @@ int main(int argCount, const char* argv[])
providedInitialCLevel = 1; providedInitialCLevel = 1;
break; break;
case 'h': case 'h':
help(); help(argv[0]);
goto _main_exit; goto _main_exit;
case 'p': case 'p':
g_useProgressBar = 0; g_useProgressBar = 0;