| Index: remoting/host/setup/test_util.cc
|
| diff --git a/remoting/host/setup/test_util.cc b/remoting/host/setup/test_util.cc
|
| index 51c610be364672ba0e7a850c6513e3085bf0522b..efac12393f58fcb278f8ddeb24377ffe04013417 100644
|
| --- a/remoting/host/setup/test_util.cc
|
| +++ b/remoting/host/setup/test_util.cc
|
| @@ -17,7 +17,7 @@ bool MakePipe(base::File* read_file,
|
| #if defined(OS_WIN)
|
| base::PlatformFile read_handle;
|
| base::PlatformFile write_handle;
|
| - if (!CreatePipe(&read_handle, &write_handle, NULL, 0))
|
| + if (!CreatePipe(&read_handle, &write_handle, nullptr, 0))
|
| return false;
|
| *read_file = base::File(read_handle);
|
| *write_file = base::File(write_handle);
|
|
|