VFS: Remove warning when file is not found
That is a common ocurrence.
This commit is contained in:
parent
f7cf395f71
commit
a06e1c5a21
@ -104,11 +104,7 @@ VFS::Node* VFS::resolve_path(const char* filename, Node* root)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
Node* child = current_node->find_func(current_node, buffer);
|
Node* child = current_node->find_func(current_node, buffer);
|
||||||
if (!child)
|
if (!child) { return 0; }
|
||||||
{
|
|
||||||
kwarnln("Current node did not find our target node");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (child->flags & VFS_MOUNTPOINT)
|
if (child->flags & VFS_MOUNTPOINT)
|
||||||
{
|
{
|
||||||
if (!child->link)
|
if (!child->link)
|
||||||
|
Loading…
Reference in New Issue
Block a user