changeset 3802:10c12fb36ed2

7133111: libsaproc debug print should be printed as unsigned long to fit large numbers on 64bit platform Reviewed-by: dcubed, mgronlun, dsamersoff
author sla
date Thu, 05 Apr 2012 14:16:23 +0200
parents a4b63a58d295
children 0cea7f13029e df4cd4aac5c1 27dab8a7c762
files agent/src/os/linux/ps_core.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/agent/src/os/linux/ps_core.c	Mon Apr 09 08:38:16 2012 -0700
+++ b/agent/src/os/linux/ps_core.c	Thu Apr 05 14:16:23 2012 +0200
@@ -440,7 +440,7 @@
       int j = 0;
       print_debug("---- sorted virtual address map ----\n");
       for (j = 0; j < ph->core->num_maps; j++) {
-        print_debug("base = 0x%lx\tsize = %d\n", ph->core->map_array[j]->vaddr,
+        print_debug("base = 0x%lx\tsize = %zd\n", ph->core->map_array[j]->vaddr,
                                          ph->core->map_array[j]->memsz);
       }
    }