From 70fa0988ecc3bb70d9464abe529d5b836b6867d0 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Tue, 14 Feb 2012 10:34:17 -0700 Subject: [PATCH] Fix stack address printing in Debug_Stack_Trace. --- src/microcode/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microcode/debug.c b/src/microcode/debug.c index c72730014..8838cc2c3 100644 --- a/src/microcode/debug.c +++ b/src/microcode/debug.c @@ -685,8 +685,8 @@ Back_Trace (outf_channel stream) break; } #endif - Temp = (STACK_POP ()); outf (stream, "{%#lx}", ((unsigned long) stack_pointer)); + Temp = (STACK_POP ()); if (RETURN_CODE_P (Temp)) { if (print_one_continuation_frame (stream, Temp)) -- 2.25.1