diff --git a/src/system/kernel/vm/vm.cpp b/src/system/kernel/vm/vm.cpp index 982e73ebd4..9d34827a74 100644 --- a/src/system/kernel/vm/vm.cpp +++ b/src/system/kernel/vm/vm.cpp @@ -2453,7 +2453,7 @@ vm_page_fault(addr_t address, addr_t fault_address, bool is_write, bool is_user, area ? area->name : "???", fault_address - (area ? area->base : 0x0)); // We can print a stack trace of the userland thread here. -#if 1 +#if 0 if (area) { struct stack_frame { #ifdef __INTEL__