Removing some excess kprintfs
This commit is contained in:
parent
a4859ddcc6
commit
6f2c8be0ca
@ -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;
|
||||
}
|
||||
|
||||
|
@ -78,7 +78,6 @@ VFS_Lookup(const char *path)
|
||||
|
||||
memcpy(curName, start, len);
|
||||
curName[len] = '\0';
|
||||
kprintf("%s\n", curName);
|
||||
|
||||
oldNode = curNode;
|
||||
curNode = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user