[ox/fs] Remove unnecessary PassthroughFS fstream close

(synced from 8037bc9535)
This commit is contained in:
2020-01-24 22:48:05 -06:00
parent 618c776101
commit 094c55f74c
-1
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);
}