Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
brammool committed Jul 11, 2018
1 parent 9334372 commit e76c4b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/if_ole.cpp
Expand Up @@ -759,7 +759,7 @@ extern "C" void InitOLE(int *pbDoRestart)
hr = RegisterActiveObject(
app,
MYCLSID,
NULL,
0,
&app_id);

if (FAILED(hr))
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -789,6 +789,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
178,
/**/
177,
/**/
Expand Down

0 comments on commit e76c4b2

Please sign in to comment.