[ox/fs] Remove unnecessary PassthroughFS fstream close

This commit is contained in:
Gary Talent 2020-01-24 22:48:05 -06:00
parent 70925cbde4
commit 8037bc9535

View File

@ -98,7 +98,6 @@ Error PassThroughFS::write(const char *path, void *buffer, uint64_t size, uint8_
return OxError(1);
}
f.write(static_cast<char*>(buffer), size);
f.close();
return OxError(0);
}