summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ifs/fsutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/fsck_ifs/fsutil.c')
-rw-r--r--sbin/fsck_ifs/fsutil.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sbin/fsck_ifs/fsutil.c b/sbin/fsck_ifs/fsutil.c
index c510094..1513ada 100644
--- a/sbin/fsck_ifs/fsutil.c
+++ b/sbin/fsck_ifs/fsutil.c
@@ -148,7 +148,7 @@ inoinfo(inum)
void
bufinit()
{
- register struct bufarea *bp;
+ struct bufarea *bp;
long bufcnt, i;
char *bufp;
@@ -188,7 +188,7 @@ getdatablk(blkno, size)
ufs_daddr_t blkno;
long size;
{
- register struct bufarea *bp;
+ struct bufarea *bp;
for (bp = bufhead.b_next; bp != &bufhead; bp = bp->b_next)
if (bp->b_bno == fsbtodb(&sblock, blkno))
@@ -214,7 +214,7 @@ foundit:
void
getblk(bp, blk, size)
- register struct bufarea *bp;
+ struct bufarea *bp;
ufs_daddr_t blk;
long size;
{
@@ -233,9 +233,9 @@ getblk(bp, blk, size)
void
flush(fd, bp)
int fd;
- register struct bufarea *bp;
+ struct bufarea *bp;
{
- register int i, j;
+ int i, j;
if (!bp->b_dirty)
return;
@@ -273,7 +273,7 @@ void
ckfini(markclean)
int markclean;
{
- register struct bufarea *bp, *nbp;
+ struct bufarea *bp, *nbp;
int ofsmodified, cnt = 0;
if (fswritefd < 0) {
@@ -466,7 +466,7 @@ getpathname(namebuf, curdir, ino)
ino_t curdir, ino;
{
int len;
- register char *cp;
+ char *cp;
struct inodesc idesc;
static int busy = 0;
@@ -559,7 +559,7 @@ voidquit(sig)
*/
int
dofix(idesc, msg)
- register struct inodesc *idesc;
+ struct inodesc *idesc;
char *msg;
{
OpenPOWER on IntegriCloud