Version 0.3.32
* Fixed wrong version number
* Removed unused file "opt_c.c"
* Remove error when tracing no calls and doing fork()
* Clean-up of sysdeps/linux-gnu/s390/trace.c
* Clean-up of sysdeps/linux-gnu/ppc/trace.c
* Make `--library' option really work (closes: Bug#232321)
* Merged several patches from SuSE:
+ Added some functions to ltrace.conf
+ Handle 64-big ELF files nicely
+ AMD64 support
+ Updated list of syscalls for S/390
+ Improved some debugging statements
Many thanks to Bernhard Kaindl <bk@suse.de> for his great work
diff --git a/sysdeps/linux-gnu/breakpoint.c b/sysdeps/linux-gnu/breakpoint.c
index e2bd6d7..da42556 100644
--- a/sysdeps/linux-gnu/breakpoint.c
+++ b/sysdeps/linux-gnu/breakpoint.c
@@ -14,7 +14,7 @@
int i,j;
if (opt_d>1) {
- output_line(0, "enable_breakpoint(%d,0x%08x)", pid, sbp->addr);
+ output_line(0, "enable_breakpoint(%d,%p)", pid, sbp->addr);
}
for(i=0; i < 1+((BREAKPOINT_LENGTH-1)/sizeof(long)); i++) {
@@ -34,7 +34,7 @@
int i,j;
if (opt_d>1) {
- output_line(0, "disable_breakpoint(%d,0x%08x)", pid, sbp->addr);
+ output_line(0, "disable_breakpoint(%d,%p)", pid, sbp->addr);
}
for(i=0; i < 1+((BREAKPOINT_LENGTH-1)/sizeof(long)); i++) {