X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fvfs%2Fopen.c;h=0bca8cac3c5b75fc9610c353b9a9aa37cbc6e450;hb=3e11c7767641614fbb3fad38fffefa0da9e66919;hp=3a2622f55772e208712c66e0682a909a69c9951e;hpb=da67fd4fd32d16dcd6b4cb0b63497a9925a2ef35;p=tpg%2Facess2.git diff --git a/Kernel/vfs/open.c b/Kernel/vfs/open.c index 3a2622f5..0bca8cac 100644 --- a/Kernel/vfs/open.c +++ b/Kernel/vfs/open.c @@ -2,7 +2,7 @@ * AcessMicro VFS * - Open, Close and ChDir */ -#define DEBUG 0 +#define DEBUG 1 #include #include #include "vfs.h" @@ -391,7 +391,7 @@ tVFS_Node *VFS_ParsePath(const char *Path, char **TruePath) (*TruePath)[retLength] = '/'; strcpy(*TruePath+retLength+1, pathEle); - LOG("*TruePath = '%s'\n", *TruePath); + LOG("*TruePath = '%s'", *TruePath); // - Extend Path retLength += nextSlash + 1;