mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -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:
@@ -759,7 +759,7 @@ extern "C" void InitOLE(int *pbDoRestart)
|
|||||||
hr = RegisterActiveObject(
|
hr = RegisterActiveObject(
|
||||||
app,
|
app,
|
||||||
MYCLSID,
|
MYCLSID,
|
||||||
NULL,
|
0,
|
||||||
&app_id);
|
&app_id);
|
||||||
|
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
|
@@ -789,6 +789,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
178,
|
||||||
/**/
|
/**/
|
||||||
177,
|
177,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user