Fix crash on mac os X due to unimplemented statfs()

This commit is contained in:
Sebastian Messmer 2016-02-13 20:47:15 +01:00
parent c0d0efd058
commit 7453e83732
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ unique_ref<FsBlobRef> CryDevice::LoadBlob(const bf::path &path) {
void CryDevice::statfs(const bf::path &path, struct statvfs *fsstat) {
callFsActionCallbacks();
throw FuseErrnoException(ENOTSUP);
// TODO What should we report here?
}
unique_ref<FileBlobRef> CryDevice::CreateFileBlob() {