| Index: webrtc/p2p/client/basicportallocator.cc
|
| diff --git a/webrtc/p2p/client/basicportallocator.cc b/webrtc/p2p/client/basicportallocator.cc
|
| index 806f69c2e1e20d90aa1bdc3a5e8ec1b760294f92..943a8467048ed1b6c1638b858611b8dbc43218ba 100644
|
| --- a/webrtc/p2p/client/basicportallocator.cc
|
| +++ b/webrtc/p2p/client/basicportallocator.cc
|
| @@ -58,7 +58,7 @@ int GetProtocolPriority(cricket::ProtocolType protocol) {
|
| case cricket::PROTO_SSLTCP:
|
| return 0;
|
| default:
|
| - RTC_DCHECK(false);
|
| + RTC_NOTREACHED();
|
| return 0;
|
| }
|
| }
|
| @@ -70,7 +70,7 @@ int GetAddressFamilyPriority(int ip_family) {
|
| case AF_INET:
|
| return 1;
|
| default:
|
| - RTC_DCHECK(false);
|
| + RTC_NOTREACHED();
|
| return 0;
|
| }
|
| }
|
|
|