From: Nick Clifton Date: Mon, 1 Oct 2018 16:17:54 +0000 (+0100) Subject: Fix typo setting user_specified variable when parsing -Z option. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a0389de085c9caca66ec53bcf7faf830cbf24b89;p=binutils-gdb.git Fix typo setting user_specified variable when parsing -Z option. PR 23698 * gprof.c (main): Fix typo setting user_specified variable when parsing -Z option. --- diff --git a/gprof/ChangeLog b/gprof/ChangeLog index ce748f60f02..da083a54af7 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,9 @@ +2018-10-01 Nick Clifton + + PR 23698 + * gprof.c (main): Fix typo setting user_specified variable when + parsing -Z option. + 2018-07-02 Thomas Preud'homme * gprof.texi: Use command-line consistently when used in a compount diff --git a/gprof/gprof.c b/gprof/gprof.c index 43e209096c9..db425a6996d 100644 --- a/gprof/gprof.c +++ b/gprof/gprof.c @@ -452,7 +452,7 @@ This program is free software. This program has absolutely no warranty.\n")); { output_style &= ~STYLE_EXEC_COUNTS; } - user_specified |= STYLE_ANNOTATED_SOURCE; + user_specified |= STYLE_EXEC_COUNTS; break; case OPTION_DEMANGLE: demangle = TRUE;