aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gprof/hist.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gprof/hist.c b/gprof/hist.c
index 76dfe94..717424d 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;
}
}
}