summaryrefslogtreecommitdiffstats
path: root/usr.bin/gprof/gprof.c
diff options
context:
space:
mode:
authorstefanf <stefanf@FreeBSD.org>2004-07-11 17:37:33 +0000
committerstefanf <stefanf@FreeBSD.org>2004-07-11 17:37:33 +0000
commite0b2a5b339c89dccabc683c04970ca9e8c870ac0 (patch)
tree370a3aabdff7adb2f11d2c2251bbc167b7ce6d53 /usr.bin/gprof/gprof.c
parent77a4e4e42186f9f4f0252632867458196ff4bc54 (diff)
downloadFreeBSD-src-e0b2a5b339c89dccabc683c04970ca9e8c870ac0.zip
FreeBSD-src-e0b2a5b339c89dccabc683c04970ca9e8c870ac0.tar.gz
Fix a few cases that relied on 'implicit int' (constraint violation in C99).
Diffstat (limited to 'usr.bin/gprof/gprof.c')
-rw-r--r--usr.bin/gprof/gprof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c
index 1ddc4f1..cfb9fab 100644
--- a/usr.bin/gprof/gprof.c
+++ b/usr.bin/gprof/gprof.c
@@ -417,7 +417,7 @@ void
readsamples(pfile)
FILE *pfile;
{
- register i;
+ int i;
intmax_t sample;
if (samples == 0) {
OpenPOWER on IntegriCloud