Ticket #868: decoderbase.r8424.amd64.patch

File decoderbase.r8424.amd64.patch, 476 bytes (added by Jean-Michel <je at n-michel.net>, 18 years ago)

svn8424 broke compile on amd64

  • libs/libmythtv/decoderbase.cpp

     
    389389    }
    390390    // keep in bounds
    391391    lower = max(lower, 0LL);
    392     upper = min(upper, m_positionMap.size() - 1LL);
     392    upper = min((long long unsigned int)upper, m_positionMap.size() - 1LL);
    393393
    394394    upper_bound = upper;
    395395    lower_bound = lower;