Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(475)

Unified Diff: webrtc/pc/quicdatatransport.cc

Issue 2685783014: Replace NULL with nullptr in all C++ files. (Closed)
Patch Set: Fixing android. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/pc/quicdatatransport.cc
diff --git a/webrtc/pc/quicdatatransport.cc b/webrtc/pc/quicdatatransport.cc
index 8b0a93f085c61616c5a6d340d0e483064695b61d..32a5b7e785456474bdfd3cfee6b34bea2f66915d 100644
--- a/webrtc/pc/quicdatatransport.cc
+++ b/webrtc/pc/quicdatatransport.cc
@@ -56,7 +56,7 @@ bool QuicDataTransport::SetTransport(const std::string& transport_name) {
bool QuicDataTransport::SetTransportChannel(
cricket::QuicTransportChannel* channel) {
if (!channel) {
- LOG(LS_ERROR) << "|channel| is NULL. Cannot set transport channel.";
+ LOG(LS_ERROR) << "|channel| is null. Cannot set transport channel.";
return false;
}
if (quic_transport_channel_) {

Powered by Google App Engine
This is Rietveld 408576698