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

Unified Diff: webrtc/system_wrappers/source/trace_win.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/system_wrappers/source/trace_win.cc
diff --git a/webrtc/system_wrappers/source/trace_win.cc b/webrtc/system_wrappers/source/trace_win.cc
index 4caedfce773286f40d837ccba141ee13e05299a6..741d95e8b523ed105dd238fd76f9e9ad83718aaa 100644
--- a/webrtc/system_wrappers/source/trace_win.cc
+++ b/webrtc/system_wrappers/source/trace_win.cc
@@ -90,7 +90,7 @@ int32_t TraceWindows::AddDateTimeInfo(char* trace_message) const {
sprintf(trace_message, "Local Date: %ls Local Time: %ls", sz_date_str,
sz_time_str);
- // Include NULL termination (hence + 1).
+ // Include null termination (hence + 1).
return static_cast<int32_t>(strlen(trace_message) + 1);
}

Powered by Google App Engine
This is Rietveld 408576698