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

Unified Diff: webrtc/test/win/run_loop_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/test/win/run_loop_win.cc
diff --git a/webrtc/test/win/run_loop_win.cc b/webrtc/test/win/run_loop_win.cc
index ec29cc5a6734a6610a98cbb7fb4e1c2851c35441..ef6a14fc1cc99281dc7becff43631388f4522a32 100644
--- a/webrtc/test/win/run_loop_win.cc
+++ b/webrtc/test/win/run_loop_win.cc
@@ -23,7 +23,7 @@ void PressEnterToContinue() {
MSG msg;
BOOL ret;
- while ((ret = GetMessage(&msg, NULL, 0, 0)) != 0) {
+ while ((ret = GetMessage(&msg, nullptr, 0, 0)) != 0) {
assert(ret != -1);
TranslateMessage(&msg);
DispatchMessage(&msg);

Powered by Google App Engine
This is Rietveld 408576698