From: John Hodge Date: Fri, 25 Sep 2009 06:10:47 +0000 (+0800) Subject: Added debug to VFS_ReadDir X-Git-Tag: rel0.06~517 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=61dd8e083f853cf6f2ec840d4d4ba9a597462112;p=tpg%2Facess2.git Added debug to VFS_ReadDir --- diff --git a/Kernel/vfs/dir.c b/Kernel/vfs/dir.c index b4001dd1..57c11c14 100644 --- a/Kernel/vfs/dir.c +++ b/Kernel/vfs/dir.c @@ -146,6 +146,7 @@ int VFS_ReadDir(int FD, char *Dest) if(h->Node->ReadDir == NULL) return 0; tmp = h->Node->ReadDir(h->Node, h->Position); + LOG("tmp = '%s'", tmp); if(!tmp) return 0;