Kernel/VFS - Fixed debug in open.c
authorJohn Hodge <[email protected]>
Wed, 15 Aug 2012 04:55:21 +0000 (12:55 +0800)
committerJohn Hodge <[email protected]>
Wed, 15 Aug 2012 04:55:21 +0000 (12:55 +0800)
KernelLand/Kernel/vfs/open.c

index e4d2bb2..22d20e9 100644 (file)
@@ -292,7 +292,7 @@ restart_parse:
                }
                if( !curNode->Type->FindDir )
                {
-                       LOG("Finddir failure on '%s' - No FindDir method in %s", Path, curNode->Type->Name);
+                       LOG("Finddir failure on '%s' - No FindDir method in %s", Path, curNode->Type->TypeName);
                        goto _error;
                }
                LOG("FindDir{=%p}(%p, '%s')", curNode->Type->FindDir, curNode, pathEle);
@@ -391,7 +391,7 @@ restart_parse:
        LOG("tmpNode = %p", tmpNode);
        // Check if file was found
        if(!tmpNode) {
-               LOG("Node '%s' not found in dir '%s'", &Path[ofs], Path);
+               LOG("Node '%s' not found in dir '%.*s'", &Path[ofs], ofs, Path);
                goto _error;
        }
        _CloseNode( curNode );

UCC git Repository :: git.ucc.asn.au