added missing return to avoid 'control reaches end of non-void function'

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16206 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-07-18 12:59:56 +00:00
parent 4aa0010b2b
commit 79656e30d2

View File

@@ -844,6 +844,8 @@ long wxExecute(wxChar **argv,
return exitcode; return exitcode;
#endif // wxUSE_GUI #endif // wxUSE_GUI
} }
return ERROR_RETURN_CODE;
} }
#undef ERROR_RETURN_CODE #undef ERROR_RETURN_CODE