| Index: mojo/edk/system/remote_producer_data_pipe_impl.cc
|
| diff --git a/mojo/edk/system/remote_producer_data_pipe_impl.cc b/mojo/edk/system/remote_producer_data_pipe_impl.cc
|
| index 26ef410d7aad6a5f9c65e1fb736fade01d492c86..7cd2447fd0079a5dfbd42df39089ba66fe6b80f8 100644
|
| --- a/mojo/edk/system/remote_producer_data_pipe_impl.cc
|
| +++ b/mojo/edk/system/remote_producer_data_pipe_impl.cc
|
| @@ -444,7 +444,7 @@ void RemoteProducerDataPipeImpl::MarkDataAsConsumed(size_t num_bytes) {
|
| }
|
|
|
| RemoteDataPipeAck ack_data = {};
|
| - ack_data.num_bytes_consumed = num_bytes;
|
| + ack_data.num_bytes_consumed = static_cast<uint32_t>(num_bytes);
|
| scoped_ptr<MessageInTransit> message(
|
| new MessageInTransit(MessageInTransit::kTypeEndpoint,
|
| MessageInTransit::kSubtypeEndpointDataPipeAck,
|
|
|