Fix minor formatting error.

This commit is contained in:
TomAwezome 2022-08-27 16:07:45 -04:00
parent 07d4bbc20c
commit d3a298c9fd

View file

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