This commit is contained in:
Akash Gupta 2021-08-06 14:34:07 -07:00
Родитель 8be06f89d7
Коммит ae6d6bbbc2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -58,7 +58,7 @@ int BlkdevRead(
goto done;
}
/* If size is aligned to block size, we just do a batch read. */
/* If size is a multiple of the block size, we just do a batch read. */
if (size % BLKDEV_BLKSIZE == 0)
{
if (dev->GetN(dev, blkno, nblocks, ptr) != 0)