Ignore:
Timestamp:
Jun 19, 2013 6:47:43 AM (11 years ago)
Author:
riza
Message:

Re #1680: Add initial support for Win64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/src/pjlib-util/crc32.c

    r2511 r4537  
    160160    pj_uint32_t crc = ctx->crc_state ^ CRC32_NEGL; 
    161161 
    162     for( ; (((unsigned long)data) & 0x03) && nbytes > 0; --nbytes) { 
     162    for( ; (((unsigned long)(pj_ssize_t)data) & 0x03) && nbytes > 0; --nbytes) { 
    163163        crc = crc_tab[CRC32_INDEX(crc) ^ *data++] ^ CRC32_SHIFTED(crc); 
    164164    } 
Note: See TracChangeset for help on using the changeset viewer.