• Show log

    Commit

  • Hash : 56be47f8
    Author : Josh Triplett
    Date : 2014-03-24T21:24:53

    Fix a warning on 64-bit Windows When sizeof(size_t) != sizeof(unsigned), adding a size_t to cif->bytes produces a "possible loss of data" warning. However, the size_t in question refers to the size of a single parameter. Use a cast to avoid the warning.