X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fvfs%2Fmain.c;fp=Kernel%2Fvfs%2Fmain.c;h=4fe8cf96807e2687dfd9520feb2208e916e14994;hb=a054fab667b0ebb7ea2c91181a961b3fdcc330a1;hp=cd9c45187354b97bd1d9fa39ca8d0a1ee300534b;hpb=f67c9f03f7b4aaa3688ef74b255690d52ded3db2;p=tpg%2Facess2.git diff --git a/Kernel/vfs/main.c b/Kernel/vfs/main.c index cd9c4518..4fe8cf96 100644 --- a/Kernel/vfs/main.c +++ b/Kernel/vfs/main.c @@ -72,10 +72,10 @@ char *VFS_GetTruePath(char *Path) tmp = VFS_GetAbsPath(Path); if(tmp == NULL) return NULL; - Log(" VFS_GetTruePath: tmp = '%s'", tmp); + //Log(" VFS_GetTruePath: tmp = '%s'", tmp); node = VFS_ParsePath(tmp, &ret); free(tmp); - Log(" VFS_GetTruePath: node=%p, ret='%s'", node, ret); + //Log(" VFS_GetTruePath: node=%p, ret='%s'", node, ret); if(!node) return NULL; if(node->Close) node->Close(node);