mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-29 16:44:03 +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:
parent
9be756b54b
commit
913111f124
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116591
@ -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