Correct an apparent typo.
PR: bin/53515 Submitted by: Lukas Ertl <l.ertl@univie.ac.at> Approved by: jmallett
This commit is contained in:
parent
9be756b54b
commit
913111f124
@ -74,7 +74,7 @@ getino(struct uufsd *disk, void **dino, ino_t inode, int *mode)
|
||||
goto gotit;
|
||||
bread(disk, fsbtodb(fs, ino_to_fsba(fs, inode)), inoblock,
|
||||
fs->fs_bsize);
|
||||
disk->d_inomin = min = inode - (inode & INOPB(fs));
|
||||
disk->d_inomin = min = inode - (inode % INOPB(fs));
|
||||
disk->d_inomax = max = min + INOPB(fs);
|
||||
gotit: switch (disk->d_ufs) {
|
||||
case 1:
|
||||
|
Loading…
Reference in New Issue
Block a user