mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:42:57 +00:00
[FREELDR]
Fix an x64 compilation warning Patch by Hermes Belusca CORE-6641 svn path=/trunk/; revision=57287
This commit is contained in:
parent
32d7126aa5
commit
7f09fa47c4
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ static LONG DiskRead(ULONG FileId, VOID* Buffer, ULONG N, ULONG* Count)
|
||||||
TotalSectors -= ReadSectors;
|
TotalSectors -= ReadSectors;
|
||||||
}
|
}
|
||||||
|
|
||||||
*Count = Ptr - (UCHAR *)Buffer;
|
*Count = (ULONG)(Ptr - (UCHAR*)Buffer);
|
||||||
|
|
||||||
return (!ret) ? EIO : ESUCCESS;
|
return (!ret) ? EIO : ESUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue