Index: net/quic/congestion_control/send_algorithm_interface.cc |
diff --git a/net/quic/congestion_control/send_algorithm_interface.cc b/net/quic/congestion_control/send_algorithm_interface.cc |
index 784768ada0b7eff93e9759dc09e84a607863805b..7245e33770d4127dd4fda1e8e1b3c755b44ca031 100644 |
--- a/net/quic/congestion_control/send_algorithm_interface.cc |
+++ b/net/quic/congestion_control/send_algorithm_interface.cc |
@@ -28,9 +28,9 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create( |
kMaxTcpCongestionWindow, stats); |
case kBBR: |
LOG(DFATAL) << "BbrTcpSender is not supported."; |
- return NULL; |
+ return nullptr; |
} |
- return NULL; |
+ return nullptr; |
} |
} // namespace net |