Revision: 5695
Author: [email protected]
Date: Mon Oct 25 01:26:12 2010
Log: Use size_t for return value from fwrite.

[email protected]
Review URL: http://codereview.chromium.org/4033005
http://code.google.com/p/v8/source/detail?r=5695

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

=======================================
--- /branches/bleeding_edge/src/log.cc  Mon Oct 25 01:22:23 2010
+++ /branches/bleeding_edge/src/log.cc  Mon Oct 25 01:26:12 2010
@@ -1378,8 +1378,8 @@
 void Logger::LowLevelCodeCreateEvent(Code* code, LogMessageBuilder* msg) {
   if (!FLAG_ll_prof || Log::output_code_handle_ == NULL) return;
   int pos = static_cast<int>(ftell(Log::output_code_handle_));
-  int rv = fwrite(code->instruction_start(), 1, code->instruction_size(),
-                  Log::output_code_handle_);
+ size_t rv = fwrite(code->instruction_start(), 1, code->instruction_size(),
+                     Log::output_code_handle_);
   ASSERT(static_cast<size_t>(code->instruction_size()) == rv);
   USE(rv);
   msg->Append(",%d", pos);

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to