Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
display offsets in hexa (counting in decimal sometimes difficult)
[simgrid.git] / teshsuite / xbt / mmalloc_test.c
index 0c21dfd..2973248 100644 (file)
@@ -34,7 +34,7 @@ int main(int argc, char**argv)
   for (i = 0; i < TESTSIZE; i++) {
     size = size_of_block(i);
     pointers[i] = mmalloc(heapA, size);
-    XBT_INFO("%d bytes allocated with offset %lu", size, ((char*)pointers[i])-((char*)heapA));
+    XBT_INFO("%d bytes allocated with offset %tx", size, ((char*)pointers[i])-((char*)heapA));
   }
   XBT_INFO("All blocks were correctly allocated. Free every second block");
   for (i = 0; i < TESTSIZE; i+=2) {