mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-12-23 03:53:43 +01:00
Replace '%%' with '%' inside verbatim.
(Logical change 1.240)
This commit is contained in:
parent
947c5203b9
commit
bba579e277
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ void show_backtrace (void) {
|
|||
while (unw_step(&cursor) > 0) {
|
||||
unw_get_reg(&cursor, UNW_REG_IP, &ip);
|
||||
unw_get_reg(&cursor, UNW_REG_SP, &sp);
|
||||
printf ("ip = %%lx, sp = %%lx\n", (long) ip, (long) sp);
|
||||
printf ("ip = %lx, sp = %lx\n", (long) ip, (long) sp);
|
||||
}
|
||||
}
|
||||
\end{verbatim}
|
||||
|
|
Loading…
Reference in a new issue