From e0b2a5b339c89dccabc683c04970ca9e8c870ac0 Mon Sep 17 00:00:00 2001 From: stefanf Date: Sun, 11 Jul 2004 17:37:33 +0000 Subject: Fix a few cases that relied on 'implicit int' (constraint violation in C99). --- usr.bin/gprof/gprof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/gprof') 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) { -- cgit v1.1