diff options
author | Nick Clifton <nickc@redhat.com> | 2007-07-12 07:16:41 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-07-12 07:16:41 +0000 |
commit | d2df793a7137120047017593d26669e5092e3841 (patch) | |
tree | 691f20fd53ad1cb970387e3a5f434824cb1fb2fe /gprof/hist.c | |
parent | db42c6e8ee92965ca26f4ccf2183d26a8c560931 (diff) | |
download | gdb-d2df793a7137120047017593d26669e5092e3841.zip gdb-d2df793a7137120047017593d26669e5092e3841.tar.gz gdb-d2df793a7137120047017593d26669e5092e3841.tar.bz2 |
Add support for building on a 64-bit Windows host.
Diffstat (limited to 'gprof/hist.c')
-rw-r--r-- | gprof/hist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gprof/hist.c b/gprof/hist.c index aa3f7ef..0b86c03 100644 --- a/gprof/hist.c +++ b/gprof/hist.c @@ -464,7 +464,7 @@ print_header (int prefix) if (bsd_style_output) { printf (_("\ngranularity: each sample hit covers %ld byte(s)"), - (long) hist_scale * sizeof (UNIT)); + (long) hist_scale * (long) sizeof (UNIT)); if (total_time > 0.0) { printf (_(" for %.2f%% of %.2f %s\n\n"), |