| Index: webrtc/p2p/base/dtlstransport.h
|
| diff --git a/webrtc/p2p/base/dtlstransport.h b/webrtc/p2p/base/dtlstransport.h
|
| index 9559c1e6d2ec729984c2e1ca946a60094477e7bb..2b62294482c558780eb82a6cc9c917c9e0523234 100644
|
| --- a/webrtc/p2p/base/dtlstransport.h
|
| +++ b/webrtc/p2p/base/dtlstransport.h
|
| @@ -238,10 +238,10 @@ class DtlsTransport : public Base {
|
| error_desc);
|
| }
|
| // Apply remote fingerprint.
|
| - if (!channel->SetRemoteFingerprint(
|
| - remote_fingerprint_->algorithm,
|
| - reinterpret_cast<const uint8*>(remote_fingerprint_->digest.data()),
|
| - remote_fingerprint_->digest.size())) {
|
| + if (!channel->SetRemoteFingerprint(remote_fingerprint_->algorithm,
|
| + reinterpret_cast<const uint8_t*>(
|
| + remote_fingerprint_->digest.data()),
|
| + remote_fingerprint_->digest.size())) {
|
| return BadTransportDescription("Failed to apply remote fingerprint.",
|
| error_desc);
|
| }
|
|
|