gcc warning fix: don't use NULL where integer is required
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
dbbe02ea5a
commit
90412a12f4
@ -157,7 +157,7 @@ wxString wxStandardPathsCF::GetExecutablePath() const
|
||||
ProcessSerialNumber procno ;
|
||||
FSSpec fsSpec;
|
||||
|
||||
procno.highLongOfPSN = NULL ;
|
||||
procno.highLongOfPSN = 0 ;
|
||||
procno.lowLongOfPSN = kCurrentProcess ;
|
||||
processinfo.processInfoLength = sizeof(ProcessInfoRec);
|
||||
processinfo.processName = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user