| 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);
|
|
|