From 79656e30d230491020b7f1579d99014e3c368a1c Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot <gilles_depeyrot@mac.com> Date: Thu, 18 Jul 2002 12:59:56 +0000 Subject: [PATCH] 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 --- src/unix/utilsunx.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.47.2