]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
readd right adjustment.
authorDirk Mueller <daywalker@users.sourceforge.net>
Thu, 4 Oct 2007 21:36:40 +0000 (21:36 +0000)
committerDirk Mueller <daywalker@users.sourceforge.net>
Thu, 4 Oct 2007 21:36:40 +0000 (21:36 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6948

coregrind/m_stacktrace.c

index 8bc2da61b960217990238a0a845a317ed681ddf2..18b8a3574aa41a48c9aae1b0d17fbe36481a0645 100644 (file)
@@ -158,7 +158,7 @@ UInt VG_(get_StackTrace2) ( ThreadId tid_if_known,
          fp = (((UWord*)fp)[0]);
          ips[i++] = ip;
          if (debug)
-            VG_(printf)("     ipsF[%d]=%p\n", i-1, ips[i-1]);
+            VG_(printf)("     ipsF[%d]=0x%08lx\n", i-1, ips[i-1]);
          ip = ip - 1;
          continue;
       }
@@ -168,7 +168,7 @@ UInt VG_(get_StackTrace2) ( ThreadId tid_if_known,
       if ( VG_(use_CF_info)( &ip, &sp, &fp, fp_min, fp_max ) ) {
          ips[i++] = ip;
          if (debug)
-            VG_(printf)("     ipsC[%d]=%p\n", i-1, ips[i-1]);
+            VG_(printf)("     ipsC[%d]=0x%08lx\n", i-1, ips[i-1]);
          ip = ip - 1;
          continue;
       }