| Index: webrtc/test/fake_network_pipe.cc
|
| diff --git a/webrtc/test/fake_network_pipe.cc b/webrtc/test/fake_network_pipe.cc
|
| index 4e431222dac108bafcfc8dc4003c4c08b688d3d1..89020e87b813e266f9e474927252fb0de4957f8c 100644
|
| --- a/webrtc/test/fake_network_pipe.cc
|
| +++ b/webrtc/test/fake_network_pipe.cc
|
| @@ -146,7 +146,7 @@ int FakeNetworkPipe::AverageDelay() {
|
| if (sent_packets_ == 0)
|
| return 0;
|
|
|
| - return total_packet_delay_ / static_cast<int>(sent_packets_);
|
| + return total_packet_delay_ / static_cast<int64_t>(sent_packets_);
|
| }
|
|
|
| void FakeNetworkPipe::Process() {
|
|
|