diff options
author | Nick Clifton <nickc@redhat.com> | 2000-05-26 21:11:33 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-05-26 21:11:33 +0000 |
commit | a799cbe2740f55a797085b0c67b69eaae6745940 (patch) | |
tree | d5ccb9a643000c7d3d5037205f56a0d48b8ef207 /gprof/gprof.c | |
parent | 3b35ec75cb0811cb76b4c4aa347f2878c20222f3 (diff) | |
download | gdb-a799cbe2740f55a797085b0c67b69eaae6745940.zip gdb-a799cbe2740f55a797085b0c67b69eaae6745940.tar.gz gdb-a799cbe2740f55a797085b0c67b69eaae6745940.tar.bz2 |
When calling getopt_long indicate that the 'd' switch takes an optional
argument, whereas the 'D' switch takes no argument at all.
Diffstat (limited to 'gprof/gprof.c')
-rw-r--r-- | gprof/gprof.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gprof/gprof.c b/gprof/gprof.c index 0075480..5e47a97 100644 --- a/gprof/gprof.c +++ b/gprof/gprof.c @@ -179,7 +179,7 @@ DEFUN (main, (argc, argv), int argc AND char **argv) xmalloc_set_program_name (whoami); while ((ch = getopt_long (argc, argv, - "aA::bBcCdD::e:E:f:F:hiI:J::k:lLm:n::N::O:p::P::q::Q::st:Tvw:xyzZ::", + "aA::bBcCd::De:E:f:F:hiI:J::k:lLm:n::N::O:p::P::q::Q::st:Tvw:xyzZ::", long_options, 0)) != EOF) { |