Commit 315a4efb authored by Sergei Golubchik's avatar Sergei Golubchik

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751805 typo fixed

use ascii 'x' not utf8 '×' for hex numbers
parent a4aa1f85
......@@ -85,7 +85,7 @@ os_stacktrace_print(
caller_address = (void*) uc->uc_mcontext.gregs[REG_RIP] ;
#elif defined(__hppa__)
ucontext_t* uc = (ucontext_t*) ucontext;
caller_address = (void*) uc->uc_mcontext.sc_iaoq[0] & ~0×3UL ;
caller_address = (void*) uc->uc_mcontext.sc_iaoq[0] & ~0x3UL ;
#elif (defined (__ppc__)) || (defined (__powerpc__))
ucontext_t* uc = (ucontext_t*) ucontext;
caller_address = (void*) uc->uc_mcontext.regs->nip ;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment