Skip to content

Commit

Permalink
logger: Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marv7000 committed Feb 23, 2025
1 parent 6d7ca2b commit ed519b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/system/logger.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,9 @@ void ktrace(Context* regs)
else
arch_dump_registers(regs);

StackFrame* fp = (StackFrame*)
StackFrame* fp =
#ifdef __x86_64__
regs->rbp;
(StackFrame*)regs->rbp;
#endif

// Print stack trace.
Expand Down

0 comments on commit ed519b4

Please sign in to comment.