Revision: 16023
Author:   [email protected]
Date:     Fri Aug  2 02:35:44 2013
Log:      Fix Mac build after r16022.

[email protected]

Review URL: https://codereview.chromium.org/21786002
http://code.google.com/p/v8/source/detail?r=16023

Modified:
 /branches/bleeding_edge/src/d8.cc

=======================================
--- /branches/bleeding_edge/src/d8.cc   Fri Aug  2 02:02:02 2013
+++ /branches/bleeding_edge/src/d8.cc   Fri Aug  2 02:35:44 2013
@@ -1596,7 +1596,7 @@
     ROOT_LIST(ROOT_LIST_CASE)
     STRUCT_LIST(STRUCT_LIST_CASE)
     if (n == NULL) continue;
-    printf("  0x%05" V8_PTR_PREFIX "x: (%d, \"%s\"),\n", p, t, n);
+    printf("  0x%05" V8PRIxPTR ": (%d, \"%s\"),\n", p, t, n);
   }
   printf("}\n");
 #undef STRUCT_LIST_CASE
@@ -1616,7 +1616,7 @@
       intptr_t p = reinterpret_cast<intptr_t>(o) & 0xfffff;
       ROOT_LIST(ROOT_LIST_CASE)
       if (n == NULL) continue;
- printf(" (\"%s\", 0x%05" V8_PTR_PREFIX "x): \"%s\",\n", sname, p, n);
+      printf("  (\"%s\", 0x%05" V8PRIxPTR "): \"%s\",\n", sname, p, n);
     }
   }
   printf("}\n");

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to