Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: runtime/bin/eventhandler_win.cc

Issue 838693002: Fix compilation warnings in Windows event handler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/eventhandler_win.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/eventhandler_win.cc
diff --git a/runtime/bin/eventhandler_win.cc b/runtime/bin/eventhandler_win.cc
index 803da35598c1def312ad284e00e9a4354533b1a9..fff9d87d9ae8f1db639c3eb777639452c42517e0 100644
--- a/runtime/bin/eventhandler_win.cc
+++ b/runtime/bin/eventhandler_win.cc
@@ -964,7 +964,6 @@ bool DatagramSocket::IssueRecvFrom() {
DWORD flags;
flags = 0;
- int len;
int rc = WSARecvFrom(socket(),
buffer->GetWASBUF(),
1,
@@ -1253,7 +1252,6 @@ void EventHandlerImplementation::HandleIOCompletion(DWORD bytes,
EventHandlerImplementation::EventHandlerImplementation() {
- intptr_t result;
completion_port_ =
CreateIoCompletionPort(INVALID_HANDLE_VALUE, NULL, NULL, 1);
if (completion_port_ == NULL) {
« no previous file with comments | « runtime/bin/eventhandler_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698