Cast to unsigned long
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 17 May 2012 19:44:52 +0000 (12:44 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 17 May 2012 19:44:52 +0000 (12:44 -0700)
ChangeLog
sysdeps/x86_64/tst-mallocalign1.c

index 284adae..793bc73 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
+
 2012-05-17  Andreas Jaeger  <aj@suse.de>
 
        * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare refsym only
index 5ce68da..d4e6036 100644 (file)
@@ -26,7 +26,7 @@ test (size_t s)
 {
   void *p = malloc (s);
 
-  printf ("malloc: %d, %p: %ld\n", s, p,
+  printf ("malloc: %ld, %p: %ld\n", (unsigned long) s, p,
          ((unsigned long) p) & ALIGN_MASK);
   return p;
 }