0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 8.1.0178: warning for passing pointer to non-pointer argument

Problem:    Warning for passing pointer to non-pointer argument.
Solution:   Use zero instead of NULL.
This commit is contained in:
Bram Moolenaar
2018-07-11 22:57:54 +02:00
parent 93343725b5
commit e76c4b237d
2 changed files with 3 additions and 1 deletions

View File

@@ -759,7 +759,7 @@ extern "C" void InitOLE(int *pbDoRestart)
hr = RegisterActiveObject(
app,
MYCLSID,
NULL,
0,
&app_id);
if (FAILED(hr))