| Index: webkit/default_plugin/plugin_database_handler.cc
|
| diff --git a/webkit/default_plugin/plugin_database_handler.cc b/webkit/default_plugin/plugin_database_handler.cc
|
| index 3aeff630f20ac9ad24d70eb9c4f840e865c5d083..d35fdb12e903b6c3262492ca0b583edf43b3e25a 100644
|
| --- a/webkit/default_plugin/plugin_database_handler.cc
|
| +++ b/webkit/default_plugin/plugin_database_handler.cc
|
| @@ -144,13 +144,13 @@ int32 PluginDatabaseHandler::Write(NPStream* stream, int32 offset,
|
| }
|
| }
|
|
|
| - DWORD bytes_written = 0;
|
| + unsigned long bytes_written = 0;
|
| if (0 == lstrcmpiA(stream->url, plugin_finder_url_.c_str())) {
|
| DCHECK(plugin_downloads_file_ != INVALID_HANDLE_VALUE);
|
|
|
| WriteFile(plugin_downloads_file_, buffer, buffer_length, &bytes_written,
|
| NULL);
|
| - DCHECK_EQ(buffer_length, static_cast<int32>(bytes_written));
|
| + DCHECK(buffer_length == bytes_written);
|
| }
|
| return bytes_written;
|
| }
|
|
|