X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=AcessNative%2Facesskernel_src%2Fnativefs.c;h=022ab78a0ef690dc23ce826eabf69d4474a8034f;hb=d212a6f1517af8a9c1d550f566a202418f04fffe;hp=835fce9f7e7a6c9b8f11ccbad781ca9dd8815765;hpb=ef7bdb38b14462efa2a0fef943080c3b4f2f2ad5;p=tpg%2Facess2.git diff --git a/AcessNative/acesskernel_src/nativefs.c b/AcessNative/acesskernel_src/nativefs.c index 835fce9f..022ab78a 100644 --- a/AcessNative/acesskernel_src/nativefs.c +++ b/AcessNative/acesskernel_src/nativefs.c @@ -5,7 +5,7 @@ * nativefs.c * - Host filesystem access */ -#define DEBUG 1 +#define DEBUG 0 #define off_t _acess_off_t #include // Acess #include // Acess @@ -63,7 +63,7 @@ tVFS_Node *NativeFS_Mount(const char *Device, const char **Arguments) dp = opendir(Device); if(!dp) { - Log_Warning("NativeFS", "ERRO: Unable to open device root '%s'", Device); + Log_Warning("NativeFS", "ERROR: Unable to open device root '%s'", Device); return NULL; } @@ -82,7 +82,7 @@ tVFS_Node *NativeFS_Mount(const char *Device, const char **Arguments) ret->Flags = VFS_FFLAG_DIRECTORY; ret->Type = &gNativeFS_DirNodeType; - + return ret; }