From ea39c6377e4d5cb97295e4c2374456ded3f6dea0 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 6 Apr 2008 03:13:11 +0000 Subject: [PATCH] Might help gcc 2.95.3 to resolve its perceived overloading of the function. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24824 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/fs_shell/vfs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/fs_shell/vfs.cpp b/src/tools/fs_shell/vfs.cpp index 752986f774..e8e894decb 100644 --- a/src/tools/fs_shell/vfs.cpp +++ b/src/tools/fs_shell/vfs.cpp @@ -2399,7 +2399,7 @@ vfs_get_fs_node_from_path(fssh_fs_volume *volume, const char *path, bool kernel, } // Use get_vnode() to resolve the cookie for the right layer. - status = fssh_get_vnode(volume, vnode->id, _node); + status = ::fssh_get_vnode(volume, vnode->id, _node); put_vnode(vnode); return FSSH_B_OK;