Fix File test

This commit is contained in:
IlushaShurupov 2023-07-18 23:48:54 +03:00 committed by Ilya Shurupov
parent 038e6c58cf
commit 32c7512b69
5 changed files with 13 additions and 12 deletions

View file

@ -40,7 +40,7 @@ void FileSystemHandle::seekp(ualni in) {
void FileSystemHandle::read(int1* in, ualni size) {
auto strm = (std::fstream*) stream;
strm->write(in, size);
strm->read(in, size);
}
void FileSystemHandle::write(const int1* in, ualni size) {