Index: mojo/system/channel.cc |
diff --git a/mojo/system/channel.cc b/mojo/system/channel.cc |
index 2669a87eb8576313a96fed18b28c7db0f272d65b..bcd01f368ecc3acd86f6f38d33420deda344ee3a 100644 |
--- a/mojo/system/channel.cc |
+++ b/mojo/system/channel.cc |
@@ -351,7 +351,7 @@ void Channel::OnReadMessageForDownstream( |
scoped_ptr<MessageInTransit> message(new MessageInTransit(message_view)); |
message->DeserializeDispatchers(this); |
MojoResult result = endpoint_info.message_pipe->EnqueueMessage( |
- MessagePipe::GetPeerPort(endpoint_info.port), message.Pass(), NULL); |
+ MessagePipe::GetPeerPort(endpoint_info.port), message.Pass()); |
if (result != MOJO_RESULT_OK) { |
// TODO(vtl): This might be a "non-error", e.g., if the destination endpoint |
// has been closed (in an unavoidable race). This might also be a "remote" |