| Index: remoting/host/win/entry_point.cc
|
| diff --git a/remoting/host/win/entry_point.cc b/remoting/host/win/entry_point.cc
|
| index 3b54069dc2cb0c3b5e1a062ba0c862656ef46891..0d711f27807d54efeece6c29533675cf75759202 100644
|
| --- a/remoting/host/win/entry_point.cc
|
| +++ b/remoting/host/win/entry_point.cc
|
| @@ -10,7 +10,7 @@
|
| // order to be really small the app doesn't link against the CRT.
|
| void HostEntryPoint() {
|
| // CommandLine::Init() ignores the passed parameters on Windows, so it is safe
|
| - // to pass NULL here.
|
| - int exit_code = remoting::HostMain(0, NULL);
|
| + // to pass nullptr here.
|
| + int exit_code = remoting::HostMain(0, nullptr);
|
| ExitProcess(exit_code);
|
| }
|
|
|