mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-13 02:22:28 +00:00
fix(system/file): clarify intention to call System_File::Read/Write instead of File::Read/File::Write (same arguments)
This commit is contained in:
parent
5c6b9b415f
commit
61eede165c
2 changed files with 4 additions and 4 deletions
|
|
@ -581,11 +581,11 @@ bool Read(File::StreamRecord* file, void* data, int64_t offset, size_t* bytes) {
|
|||
}
|
||||
|
||||
bool Read(FileParms* parms) {
|
||||
return Read(parms->stream, parms->param, -1, &parms->size);
|
||||
return System_File::Read(parms->stream, parms->param, -1, &parms->size);
|
||||
}
|
||||
|
||||
bool ReadP(FileParms* parms) {
|
||||
return Read(parms->stream, parms->param, parms->position, &parms->size);
|
||||
return System_File::Read(parms->stream, parms->param, parms->position, &parms->size);
|
||||
}
|
||||
|
||||
bool RemoveDirectory(FileParms* parms) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue