mirror of
https://github.com/FEX-Emu/libunwind.git
synced 2024-11-23 22:39:39 +00:00
Replace '%%' with '%' inside verbatim.
(Logical change 1.240)
This commit is contained in:
parent
947c5203b9
commit
bba579e277
@ -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 New Issue
Block a user