diff options
author | Nick Clifton <nickc@redhat.com> | 2007-09-25 15:58:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-09-25 15:58:04 +0000 |
commit | 2d7b968704e993c5c3a37a997a1a55f630174be3 (patch) | |
tree | 39e6d4e5b5e70513e8e49e422e890301b05a358e | |
parent | cac27205672ae12d3b8f46f59b0adbd9dcdd3a1b (diff) | |
download | fsf-binutils-gdb-2d7b968704e993c5c3a37a997a1a55f630174be3.zip fsf-binutils-gdb-2d7b968704e993c5c3a37a997a1a55f630174be3.tar.gz fsf-binutils-gdb-2d7b968704e993c5c3a37a997a1a55f630174be3.tar.bz2 |
* cg_print.c (sort_members): Include the final member on the list in the sort.
-rw-r--r-- | gprof/ChangeLog | 5 | ||||
-rw-r--r-- | gprof/cg_print.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 302a73f..5b2844f 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,8 @@ +2007-09-25 Robert Norton <rnorton@broadcom.com> + + * cg_print.c (sort_members): Include the final member on the list + in the sort. + 2007-09-17 Nick Clifton <nickc@redhat.com> * po/es.po: Updated Spanish translation. diff --git a/gprof/cg_print.c b/gprof/cg_print.c index 104d049..4799bc7 100644 --- a/gprof/cg_print.c +++ b/gprof/cg_print.c @@ -166,7 +166,7 @@ sort_members (Sym *cyc) todo = cyc->cg.cyc.next; cyc->cg.cyc.next = 0; - for (doing = todo; doing && doing->cg.cyc.next; doing = todo) + for (doing = todo; doing != NULL; doing = todo) { todo = doing->cg.cyc.next; |