diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2020-11-05 15:43:53 +0200 |
---|---|---|
committer | Oran Agra <oran@redislabs.com> | 2021-01-12 16:25:37 +0200 |
commit | ebbcd05e032f491d31108a09d3deaad966f7e75e (patch) | |
tree | 5838869431436d286037ca7a47c9007c17f2c151 | |
parent | de4f04a272edd81ee946f02a598bd0b28c58fa17 (diff) | |
download | redis-ebbcd05e032f491d31108a09d3deaad966f7e75e.tar.gz |
Fix crash log output on ARM. (#8020)
(cherry picked from commit 7e4325cbc9af96d55f0b61c7648233a4473e8c93)
-rw-r--r-- | src/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.c b/src/debug.c index a5786edc0..741507ecb 100644 --- a/src/debug.c +++ b/src/debug.c @@ -1201,7 +1201,7 @@ void logRegisters(ucontext_t *uc) { "R10:%016lx R9 :%016lx\nR8 :%016lx R7 :%016lx\n" "R6 :%016lx R5 :%016lx\nR4 :%016lx R3 :%016lx\n" "R2 :%016lx R1 :%016lx\nR0 :%016lx EC :%016lx\n" - "fp: %016lx ip:%016lx\n", + "fp: %016lx ip:%016lx\n" "pc:%016lx sp:%016lx\ncpsr:%016lx fault_address:%016lx\n", (unsigned long) uc->uc_mcontext.arm_r10, (unsigned long) uc->uc_mcontext.arm_r9, |