Revision: 16614
Author:   bmeu...@chromium.org
Date:     Tue Sep 10 11:33:14 2013 UTC
Log:      Fix MSVC compiler warning after commit r16612.

TBR=mstarzin...@chromium.org

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

Modified:
 /branches/bleeding_edge/test/cctest/test-strtod.cc

=======================================
--- /branches/bleeding_edge/test/cctest/test-strtod.cc Tue Sep 10 11:13:55 2013 UTC +++ /branches/bleeding_edge/test/cctest/test-strtod.cc Tue Sep 10 11:33:14 2013 UTC
@@ -448,7 +448,7 @@
 static const int kLargeStrtodRandomCount = 2;

 TEST(RandomStrtod) {
-  srand(time(NULL));
+  srand(static_cast<unsigned int>(time(NULL)));
   char buffer[kBufferSize];
   for (int length = 1; length < 15; length++) {
     for (int i = 0; i < kShortStrtodRandomCount; ++i) {

--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to