summaryrefslogtreecommitdiff
path: root/apps/gperf
diff options
context:
space:
mode:
authoralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-03 15:11:05 +0000
committeralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-03 15:11:05 +0000
commit0acbfd6c6c95223d4a0e843e865c84f58d462e2f (patch)
tree50e89b84821bf084c8036458eeae73a939888706 /apps/gperf
parentb95109fc3576ee798d9ba836f23ca6ee2e9c42f3 (diff)
downloadATCD-0acbfd6c6c95223d4a0e843e865c84f58d462e2f.tar.gz
Changed the option for binary search to '-B'
Diffstat (limited to 'apps/gperf')
-rw-r--r--apps/gperf/src/Options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gperf/src/Options.cpp b/apps/gperf/src/Options.cpp
index 28fb8abdb71..e543f323003 100644
--- a/apps/gperf/src/Options.cpp
+++ b/apps/gperf/src/Options.cpp
@@ -241,7 +241,7 @@ Options::parse_args (int argc, char *argv[])
break;
}
// Generate code for Binary Search.
- case 'b':
+ case 'B':
{
ACE_SET_BITS (option_word_, BINARYSEARCH);
break;
@@ -318,7 +318,7 @@ Options::parse_args (int argc, char *argv[])
{
ACE_OS::fprintf (stderr,
"-a\tGenerate ANSI standard C output code, i.e., function prototypes.\n"
- "-b\tGenerate code for Binary Search.\n"
+ "-B\tGenerate code for Binary Search.\n"
"-c\tGenerate comparison code using strncmp rather than strcmp.\n"
"-C\tMake the contents of generated lookup tables constant, i.e., readonly.\n"
"-d\tEnables the debugging option (produces verbose output to the standard error).\n"