To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=81612
------- Additional comments from [EMAIL PROTECTED] Thu Oct 4 20:44:06 +0000
2007 -------
[EMAIL PROTECTED] :
Maybe I'm wrong, but what about use:
Index: extensions/source/plugin/aqua/sysplug.cxx
===============================================================
====
RCS file: /cvs/util/extensions/source/plugin/aqua/sysplug.cxx,v
retrieving revision 1.2.44.2
diff -u -r1.2.44.2 sysplug.cxx
--- extensions/source/plugin/aqua/sysplug.cxx 4 Oct 2007 15:19:14 -0000
1.2.44.2
+++ extensions/source/plugin/aqua/sysplug.cxx 4 Oct 2007 20:41:10 -0000
@@ -104,10 +104,11 @@
if( m_nCommPID != -1 && m_nCommPID != 0 )
{
int status = 16777216;
- pid_t nExit;
- nExit = waitpid( m_nCommPID, &status, WUNTRACED );
#if OSL_DEBUG_LEVEL > 1
- fprintf( stderr, "child %d (plugin app child %d) exited with status
%d\n", nExit, m_nCommPID,
WEXITSTATUS(status) );
+ pid_t nExit = waitpid( m_nCommPID, &status, WUNTRACED );
+ fprintf( stderr, "child %d (plugin app child %d) exited with status
%d\n", nExit, m_nCommPID,
WEXITSTATUS(status) );
+#else
+ waitpid( m_nCommPID, &status, WUNTRACED );
#endif
}
}
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]