From cb9f523eb9df59cd70ca109a85b695c43e383082 Mon Sep 17 00:00:00 2001 From: "blythe%netscape.com" Date: Fri, 18 Oct 2002 20:28:49 +0000 Subject: [PATCH] Not part of build. fix command line option spelling --- tools/codesighs/codesighs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/codesighs/codesighs.c b/tools/codesighs/codesighs.c index a8a9a41c7071..754dc9e66e98 100644 --- a/tools/codesighs/codesighs.c +++ b/tools/codesighs/codesighs.c @@ -119,7 +119,7 @@ static Switch gMaxSize = {"--max-size", "-max", 1, NULL, "Only consider symbols static Switch gMatchScope = {"--match-scope", "-msco", 1, NULL, "Only consider scopes that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify a range of scopes," DESC_NEWLINE "though PUBLIC, STATIC, and UNDEF are your only choices."}; static Switch gMatchClass = {"--match-class", "-mcla", 1, NULL, "Only consider classes that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify a range of classes," DESC_NEWLINE "though CODE and DATA are your only choices."}; static Switch gMatchModule = {"--match-module", "-mmod", 1, NULL, "Only consider modules that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of modules."}; -static Switch gMatchSection = {"--match-sections", "-msec", 1, NULL, "Only consider sections that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of sections." DESC_NEWLINE "Section is considered symbol type."}; +static Switch gMatchSection = {"--match-section", "-msec", 1, NULL, "Only consider sections that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of sections." DESC_NEWLINE "Section is considered symbol type."}; static Switch gMatchObject = {"--match-object", "-mobj", 1, NULL, "Only consider objects that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of objects."}; static Switch gMatchSymbol = {"--match-symbol", "-msym", 1, NULL, "Only consider symbols that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify an array of symbols."};