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