| Index: webrtc/p2p/base/dtlstransportchannel_unittest.cc
|
| diff --git a/webrtc/p2p/base/dtlstransportchannel_unittest.cc b/webrtc/p2p/base/dtlstransportchannel_unittest.cc
|
| index 814957785a765695eb3818796f3be754dc28fec0..cad5b563a5c2494b2e5f06c786a71690fd9a94b9 100644
|
| --- a/webrtc/p2p/base/dtlstransportchannel_unittest.cc
|
| +++ b/webrtc/p2p/base/dtlstransportchannel_unittest.cc
|
| @@ -228,10 +228,10 @@ class DtlsTestClient : public sigslot::has_slots<> {
|
| }
|
| }
|
|
|
| - void CheckSsl(uint16_t expected_cipher) {
|
| + void CheckSsl(int expected_cipher) {
|
| for (std::vector<cricket::DtlsTransportChannelWrapper*>::iterator it =
|
| channels_.begin(); it != channels_.end(); ++it) {
|
| - uint16_t cipher;
|
| + int cipher;
|
|
|
| bool rv = (*it)->GetSslCipherSuite(&cipher);
|
| if (negotiated_dtls_ && expected_cipher) {
|
|
|