diff options
-rw-r--r-- | sal/osl/unx/process.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sal/osl/unx/process.cxx b/sal/osl/unx/process.cxx index e40d53e4b279..c1556c9f0ede 100644 --- a/sal/osl/unx/process.cxx +++ b/sal/osl/unx/process.cxx @@ -235,9 +235,7 @@ static void ChildStatusProc(void *pData) execv(data.m_pszArgs[0], const_cast<char **>(data.m_pszArgs)); } - SAL_WARN("sal.osl", "Failed to exec: " << UnixErrnoString(errno)); - - SAL_WARN("sal.osl", "ChildStatusProc : starting '" << data.m_pszArgs[0] << "' failed"); + SAL_WARN("sal.osl", "ChildStatusProc : Failed to exec <" << data.m_pszArgs[0] << ">: " << UnixErrnoString(errno)); /* if we reach here, something went wrong */ errno_copy = errno; |