Skip to content

Commit

Permalink
Fix a missing comma in the arm64 unix printRegisterState
Browse files Browse the repository at this point in the history
  • Loading branch information
eliotmiranda committed Jul 23, 2024
1 parent 012dced commit 35802c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/unix/vm/sqUnixMain.c
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ printRegisterState(FILE *file,ucontext_t *uap)
" x20 %14p x21 %14p x22 %14p x23 %14p\n"
" x24 %14p x25 %14p x26 %14p x27 %14p\n"
" x29 %14p fp %14p lr %14p sp %14p\n"
" pc %14p pstate 0x%08x fault @ %14p\n"
" pc %14p pstate 0x%08x fault @ %14p\n",
v(regs[ 0]), v(regs[ 1]), v(regs[ 2]), v(regs[ 3]),
v(regs[ 4]), v(regs[ 5]), v(regs[ 6]), v(regs[ 7]),
v(regs[ 8]), v(regs[ 9]), v(regs[10]), v(regs[11]),
Expand Down

0 comments on commit 35802c0

Please sign in to comment.