Skip to content

Commit

Permalink
Update src/libserver/worker_util.c
Browse files Browse the repository at this point in the history
Co-authored-by: Vsevolod Stakhov <vsevolod@rspamd.com>
  • Loading branch information
ln5 and vstakhov committed Sep 9, 2023
1 parent 3744f83 commit 865705f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libserver/worker_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -1639,8 +1639,8 @@ rspamd_print_crash(ucontext_t *uap)
ret = unw_get_proc_name(&cursor, name, sizeof(name), &off);

if (ret == 0) {
msg_err("%d: %ul: %s()+0x%xl",
level, ip, name, (uintptr_t) off);
msg_err("%d: 0x%xl: %s()+0x%xl",
level, (unsigned long)ip, name, (unsigned long)off);
}
else {
msg_err("%d: %ul: <unknown>", level, ip);
Expand Down

0 comments on commit 865705f

Please sign in to comment.