Removed debug
authorJohn Hodge <[email protected]>
Sun, 27 Sep 2009 08:48:42 +0000 (16:48 +0800)
committerJohn Hodge <[email protected]>
Sun, 27 Sep 2009 08:48:42 +0000 (16:48 +0800)
Kernel/vfs/fs/fat.c
Usermode/Applications/cat_src/main.c

index c7f2d4d..bfae405 100644 (file)
@@ -344,13 +344,13 @@ Uint64 FAT_Read(tVFS_Node *node, Uint64 offset, Uint64 length, void *buffer)
        \r
        // Sanity Check offset\r
        if(offset > node->Size) {\r
-               Log("FAT_Read: Reading past EOF (%i > %i)", offset, node->Size);\r
+               //Log("FAT_Read: Reading past EOF (%i > %i)", offset, node->Size);\r
                return 0;\r
        }\r
        // Clamp Size\r
        if(offset + length > node->Size) {\r
-               Log("FAT_Read: Reading past EOF (%lli + %lli > %lli), clamped to %lli",\r
-                       offset, length, node->Size, node->Size - offset);\r
+               //Log("FAT_Read: Reading past EOF (%lli + %lli > %lli), clamped to %lli",\r
+               //      offset, length, node->Size, node->Size - offset);\r
                length = node->Size - offset;\r
        }\r
        \r
index 9877628..a7f3ab3 100644 (file)
@@ -18,7 +18,7 @@ int main(int argc, char *argv[])
                return -1;
        }
 
-       printf("Contents of `%s'\n", argv[1]);
+       //printf("Contents of `%s'\n", argv[1]);
        fd = open(argv[1], OPENFLAG_READ);
        if(fd == -1) {
                printf("Unable to open '%s' for reading\n", argv[1]);
@@ -27,7 +27,7 @@ int main(int argc, char *argv[])
 
        do {
                num = read(fd, BUF_SIZE, buf);
-               printf("num = %i\n", num);
+               //printf("num = %i\n", num);
                buf[num] = '\0';
                printf("%s", buf);
        } while(num == BUF_SIZE);

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