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:
Vadim Zeitlin 2006-11-12 21:18:52 +00:00
parent dbbe02ea5a
commit 90412a12f4

View File

@ -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;