Changeset 7790 for trunk/MagicSoft/Cosy/tcpip
- Timestamp:
- 07/14/06 13:19:54 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
r4865 r7790 91 91 return false; 92 92 93 const UInt_t len = fTxSocket->SendRaw(msg, strlen(msg));93 const Int_t len = fTxSocket->SendRaw(msg, strlen(msg)); 94 94 if (len<0) 95 95 { … … 97 97 return false; 98 98 } 99 if (len!= strlen(msg))99 if (len!=(Int_t)strlen(msg)) 100 100 { 101 101 cout << "Send wrong number (" << len << ") of Bytes." << endl;
Note:
See TracChangeset
for help on using the changeset viewer.