From: Gilles Depeyrot Date: Thu, 18 Jul 2002 12:59:56 +0000 (+0000) Subject: added missing return to avoid 'control reaches end of non-void function' X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/79656e30d230491020b7f1579d99014e3c368a1c 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 --- diff --git a/src/unix/utilsunx.cpp b/src/unix/utilsunx.cpp index 1976a20601..c7f527e9b2 100644 --- a/src/unix/utilsunx.cpp +++ b/src/unix/utilsunx.cpp @@ -844,6 +844,8 @@ long wxExecute(wxChar **argv, return exitcode; #endif // wxUSE_GUI } + + return ERROR_RETURN_CODE; } #undef ERROR_RETURN_CODE