Reviewers: Jakob,

Message:
Committed patchset #1 manually as r14639 (presubmit successful).

Description:
Fix Win64 build

[email protected]

Committed: http://code.google.com/p/v8/source/detail?r=14639

Please review this at https://codereview.chromium.org/14978005/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/objects.cc


Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index dfcb29b6027aafbdfab53181fecb10d5f52b542c..6f8f8589ce90fbd67a8505fe2dbec3977da4fb7a 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -1306,7 +1306,7 @@ void JSObject::JSObjectShortPrint(StringStream* accumulator) {
         accumulator->Add("<JS Function");
       }
       accumulator->Add(" (SharedFunctionInfo %p)",
-                       reinterpret_cast<intptr_t>(function->shared()));
+                       reinterpret_cast<void*>(function->shared()));
       accumulator->Put('>');
       break;
     }


--
--
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