diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-05-24 10:05:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-05-24 10:05:12 +0100 |
commit | 1c2d84e8e15031a45a0c5642520befb9320fe271 (patch) | |
tree | f76c0cb4e4796159f448f87c3e17fb67ae2215f6 /automation/source/simplecm/tcpio.cxx | |
parent | e49865e7020ca7e5cb024df51f1d3c0dc7994b35 (diff) |
replace comm_USHORT with comm_UINT16
Diffstat (limited to 'automation/source/simplecm/tcpio.cxx')
-rw-r--r-- | automation/source/simplecm/tcpio.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/automation/source/simplecm/tcpio.cxx b/automation/source/simplecm/tcpio.cxx index e71afb399b84..9c0bc2185704 100644 --- a/automation/source/simplecm/tcpio.cxx +++ b/automation/source/simplecm/tcpio.cxx @@ -32,7 +32,7 @@ #include "tcpio.hxx" /// implement ITransmiter -comm_USHORT TCPIO::TransferBytes( const void* pBuffer, comm_UINT32 nLen ) +comm_UINT16 TCPIO::TransferBytes( const void* pBuffer, comm_UINT32 nLen ) { osl::MutexGuard aGuard( aMSocketWriteAccess ); if ( !pStreamSocket ) @@ -48,7 +48,7 @@ comm_USHORT TCPIO::TransferBytes( const void* pBuffer, comm_UINT32 nLen ) /// implement IReceiver -comm_USHORT TCPIO::ReceiveBytes( void* pBuffer, comm_UINT32 nLen ) +comm_UINT16 TCPIO::ReceiveBytes( void* pBuffer, comm_UINT32 nLen ) { osl::MutexGuard aGuard( aMSocketReadAccess ); if ( !pStreamSocket ) |