VFS: Remove warning when file is not found

That is a common ocurrence.
This commit is contained in:
apio 2022-10-20 19:11:50 +02:00
parent f7cf395f71
commit a06e1c5a21

View File

@ -104,11 +104,7 @@ VFS::Node* VFS::resolve_path(const char* filename, Node* root)
return 0;
}
Node* child = current_node->find_func(current_node, buffer);
if (!child)
{
kwarnln("Current node did not find our target node");
return 0;
}
if (!child) { return 0; }
if (child->flags & VFS_MOUNTPOINT)
{
if (!child->link)