diff --git a/tools/mksymtab.c b/tools/mksymtab.c index 287d014353a..a0e1c0d95b4 100644 --- a/tools/mksymtab.c +++ b/tools/mksymtab.c @@ -71,12 +71,12 @@ static int nhdrfiles; static void show_usage(const char *progname) { - fprintf(stderr, "USAGE: %s [symtab-name] [nsymbols-name]\n\n", progname); + fprintf(stderr, "USAGE: %s [ []]\n\n", progname); fprintf(stderr, "Where:\n\n"); - fprintf(stderr, " : The path to the input CSV file\n"); - fprintf(stderr, " : The path to the output symbol table file\n"); - fprintf(stderr, " [symtab-name] : The name for the symbol table variable\n"); - fprintf(stderr, " [nsymbols-name]: The name for the symbol count variable\n"); + fprintf(stderr, " : The path to the input CSV file (required)\n"); + fprintf(stderr, " : The path to the output symbol table file (required)\n"); + fprintf(stderr, " : Optional name for the symbol table variable\n"); + fprintf(stderr, " : Optional name for the symbol count variable\n"); fprintf(stderr, " -d : Enable debug output\n"); exit(EXIT_FAILURE); }