Ignore:
Timestamp:
07/14/06 13:19:54 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc

    r4865 r7790  
    9191        return false;
    9292
    93     const UInt_t len = fTxSocket->SendRaw(msg, strlen(msg));
     93    const Int_t len = fTxSocket->SendRaw(msg, strlen(msg));
    9494    if (len<0)
    9595    {
     
    9797        return false;
    9898    }
    99     if (len!=strlen(msg))
     99    if (len!=(Int_t)strlen(msg))
    100100    {
    101101        cout << "Send wrong number (" << len << ") of Bytes." << endl;
Note: See TracChangeset for help on using the changeset viewer.