From 73c6870b18b8289171acd66d63bdd7ce8fb819b6 Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 20 Mar 2002 17:55:10 +0000 Subject: Remove 'register' keyword. It does not help modern compilers, and some may take some hit from it. (I also found several functions that listed *every* of its 10 local vars with "register" -- just how many free registers do people think machines have?) --- sbin/growfs/growfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbin/growfs') diff --git a/sbin/growfs/growfs.c b/sbin/growfs/growfs.c index 751db2a..42e07be 100644 --- a/sbin/growfs/growfs.c +++ b/sbin/growfs/growfs.c @@ -361,7 +361,7 @@ initcg(int cylno, time_t utime, int fso, unsigned int Nflag) DBG_FUNC("initcg") daddr_t cbase, d, dlower, dupper, dmax, blkno; int i; - register struct csum *cs; + struct csum *cs; #ifdef FSIRAND int j; #endif -- cgit v1.1