From: Ken Raeburn Date: Tue, 21 Nov 1995 19:28:35 +0000 (+0000) Subject: fix typo in last change X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=c446c25acafe9b788ffd52c9b71d1b7faa3ebdcc;p=deliverable%2Fbinutils-gdb.git fix typo in last change --- diff --git a/gprof/hist.c b/gprof/hist.c index 76dfe948a7..717424d579 100644 --- a/gprof/hist.c +++ b/gprof/hist.c @@ -225,8 +225,9 @@ scale_and_align_entries () { DBG (SAMPLEDEBUG, printf ("[scale_and_align_entries] pushing 0x%lx to 0x%lx\n", - sym->hist.scaled_addr, sym->scaled_addr + UNITS_TO_CODE)); - sym->scaled_addr += UNITS_TO_CODE; + sym->hist.scaled_addr, + sym->hist.scaled_addr + UNITS_TO_CODE)); + sym->hist.scaled_addr += UNITS_TO_CODE; } } }