mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 23:36:32 +00:00
Fix minor formatting error.
This commit is contained in:
parent
07d4bbc20c
commit
d3a298c9fd
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ I64 ClusBlkRead(CDrive *drive, U8 *buf, I64 c, I64 blks)
|
||||||
|
|
||||||
I64 ClusRead(CDrive *drive, U8 *buf, I64 c, I64 count)
|
I64 ClusRead(CDrive *drive, U8 *buf, I64 c, I64 count)
|
||||||
{//Read cluster count from drive to buf.
|
{//Read cluster count from drive to buf.
|
||||||
return ClusBlkRead(drive, buf, c, count*drive->spc);
|
return ClusBlkRead(drive, buf, c, count * drive->spc);
|
||||||
}
|
}
|
||||||
|
|
||||||
I64 ClusBlkWrite(CDrive *drive, U8 *buf, I64 c, I64 blks)
|
I64 ClusBlkWrite(CDrive *drive, U8 *buf, I64 c, I64 blks)
|
||||||
|
|
Loading…
Reference in a new issue