gcc 3 fix (no default args in implementation)

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5840 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
haydentech
2003-12-30 22:52:34 +00:00
parent c78c0787bd
commit f742072808
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -82,7 +82,7 @@ port_id PortLink::GetPort()
return fSendPort;
}
status_t PortLink::Flush(bigtime_t timeout=B_INFINITE_TIMEOUT)
status_t PortLink::Flush(bigtime_t timeout)
{
status_t write_stat;
@@ -101,7 +101,7 @@ status_t PortLink::Flush(bigtime_t timeout=B_INFINITE_TIMEOUT)
return write_stat;
}
status_t PortLink::FlushWithReply( PortMessage *msg,bigtime_t timeout=B_INFINITE_TIMEOUT )
status_t PortLink::FlushWithReply( PortMessage *msg,bigtime_t timeout )
{
if(!port_ok || !msg)
return B_BAD_VALUE;
+1 -1
View File
@@ -5,7 +5,7 @@
//extern BSession *main_session = NULL;
//------------------------------------------------------------------------------
BSession::BSession(port_id receivePort, port_id sendPort, bool isPortLink = false)
BSession::BSession(port_id receivePort, port_id sendPort, bool isPortLink)
{
fSendPort = sendPort;
fReceivePort = receivePort;