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/pjsip/src/pjsip/sip_util.c

    r4442 r4537  
    275275        body->data = pj_pool_alloc(tdata->pool, param_text->slen ); 
    276276        pj_memcpy(body->data, param_text->ptr, param_text->slen); 
    277         body->len = param_text->slen; 
     277        body->len = (unsigned)param_text->slen; 
    278278        body->print_body = &pjsip_print_text_body; 
    279279        msg->body = body; 
     
    13021302 
    13031303        /* Check if request message is larger than 1300 bytes. */ 
    1304         len = tdata->buf.cur - tdata->buf.start; 
     1304        len = (int)(tdata->buf.cur - tdata->buf.start); 
    13051305        if (len >= PJSIP_UDP_SIZE_THRESHOLD) { 
    13061306            int i; 
Note: See TracChangeset for help on using the changeset viewer.