Version 1.3.2.

Started new compiler infrastructure for two-pass compilation using a control flow graph constructed from the AST.

Profiler stack sampling for X64.

Safe handling of NaN to Posix platform-dependent time functions.

Added a new profiler control API to unify controlling various aspects for profiling.

Fixed issue 392.



git-svn-id: http://v8.googlecode.com/svn/trunk@2624 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/runtime.cc b/src/runtime.cc
index 0b98167..56e9f85 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -4920,7 +4920,7 @@
   ASSERT(args.length() == 1);
 
   CONVERT_DOUBLE_CHECKED(x, args[0]);
-  char* zone = OS::LocalTimezone(x);
+  const char* zone = OS::LocalTimezone(x);
   return Heap::AllocateStringFromUtf8(CStrVector(zone));
 }