summaryrefslogtreecommitdiff
path: root/vos
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-27 09:33:08 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-27 09:33:08 +0000
commit9f1ea41d75641078becf1e9ce04a9d2b32f1fd6a (patch)
tree6198e3303c7381192021748bac67655e83d48469 /vos
parente572dde0790d443c09054975b64ca16e291fc4bb (diff)
removed SAL_HUGE macros
Diffstat (limited to 'vos')
-rw-r--r--vos/source/socket.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vos/source/socket.cxx b/vos/source/socket.cxx
index ec44f026f09f..2888d88c66f1 100644
--- a/vos/source/socket.cxx
+++ b/vos/source/socket.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: socket.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: jbu $ $Date: 2001-03-15 10:42:00 $
+ * last change: $Author: jl $ $Date: 2001-03-27 10:33:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1440,7 +1440,7 @@ OStreamSocket& OStreamSocket::operator= (const OStreamSocket& sock)
/*****************************************************************************/
sal_Int32 OStreamSocket::read(void* pBuffer, sal_uInt32 n) const
{
- sal_uInt8 SAL_HUGE *Ptr = (sal_uInt8 SAL_HUGE *)pBuffer;
+ sal_uInt8 *Ptr = (sal_uInt8 *)pBuffer;
if (m_pRecvTimeout && ! isRecvReady(m_pRecvTimeout))
return 0;
@@ -1487,7 +1487,7 @@ sal_Int32 OStreamSocket::read(void* pBuffer, sal_uInt32 n) const
/*****************************************************************************/
sal_Int32 OStreamSocket::write(const void* pBuffer, sal_uInt32 n)
{
- sal_uInt8 SAL_HUGE *Ptr = (sal_uInt8 SAL_HUGE *)pBuffer;
+ sal_uInt8 *Ptr = (sal_uInt8 *)pBuffer;
if (m_pSendTimeout && ! isSendReady(m_pSendTimeout))
return 0;