1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-18 19:25:16 +02:00

Replace '%%' with '%' inside verbatim.

(Logical change 1.240)
This commit is contained in:
(none)!davidm 2004-08-05 08:59:57 +00:00
parent 947c5203b9
commit bba579e277

View file

@ -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}