diff --git a/src/CryDevice.cpp b/src/CryDevice.cpp index 24842940..51f0497b 100644 --- a/src/CryDevice.cpp +++ b/src/CryDevice.cpp @@ -87,7 +87,7 @@ optional> CryDevice::Load(const bf::path &path) { } else if (entry.type == fspp::Dir::EntryType::SYMLINK) { return optional>(make_unique_ref(this, std::move(*parent), entry.key)); } else { - throw FuseErrnoException(EIO); + ASSERT(false, "Unknown entry type"); } }