1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

Correct an apparent typo.

PR:		 bin/53515
Submitted by:	 Lukas Ertl <l.ertl@univie.ac.at>
Approved by:	 jmallett
This commit is contained in:
Matthew N. Dodd 2003-06-19 22:12:54 +00:00
parent 9be756b54b
commit 913111f124
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116591

View File

@ -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: