Kernel: fix dump_stacktrace

This commit is contained in:
Bananymous 2023-01-22 20:05:24 +02:00
parent 62469c529f
commit b67bbab083
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ namespace Kernel
struct stackframe
{
stackframe* ebp;
uint64_t eip;
uintptr_t eip;
};
stackframe* frame = (stackframe*)__builtin_frame_address(0);