diff options
author | Karel Zak <kzak@redhat.com> | 2006-12-07 00:25:44 +0100 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2006-12-07 00:25:44 +0100 |
commit | 66ee8158b69525e12060ef558cb5d77feadab1dc (patch) | |
tree | 08b30f2d07df9213f5647bc6f60b5090a263ef43 /sys-utils/readprofile.c | |
parent | 22853e4a82c6ef7b336527529acb94b14a0b0fd8 (diff) | |
download | util-linux-old-66ee8158b69525e12060ef558cb5d77feadab1dc.tar.gz |
Imported from util-linux-2.10s tarball.
Diffstat (limited to 'sys-utils/readprofile.c')
-rw-r--r-- | sys-utils/readprofile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-utils/readprofile.c b/sys-utils/readprofile.c index 551b2cbf..b531fa90 100644 --- a/sys-utils/readprofile.c +++ b/sys-utils/readprofile.c @@ -81,7 +81,7 @@ main (int argc, char **argv) { FILE *map; int proFd; char *mapFile, *proFile; - unsigned long len=0, add0=0, index=0; + unsigned long len=0, add0=0, indx=0; unsigned int step; unsigned int *buf, total, fn_len; unsigned long fn_add, next_add; /* current and next address */ @@ -201,8 +201,8 @@ main (int argc, char **argv) { if (*mode == 'A' && total == 0) continue; if (*mode!='T' && *mode!='t') break; /* only text is profiled */ - while (index < (next_add-add0)/step) - this += buf[index++]; + while (indx < (next_add-add0)/step) + this += buf[indx++]; total += this; fn_len = next_add-fn_add; |