Removing some excess kprintfs

This commit is contained in:
Ali Mashtizadeh 2015-01-23 12:16:20 -08:00
parent a4859ddcc6
commit 6f2c8be0ca
2 changed files with 0 additions and 2 deletions

View File

@ -304,7 +304,6 @@ Syscall_Stat(uint64_t user_path, uint64_t user_stat)
// VFS_Stat
status = VFS_Stat(path, &sb);
if (status != 0) {
kprintf("stat failed: %x\n", -status);
return status;
}

View File

@ -78,7 +78,6 @@ VFS_Lookup(const char *path)
memcpy(curName, start, len);
curName[len] = '\0';
kprintf("%s\n", curName);
oldNode = curNode;
curNode = NULL;