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/pjsua-lib/pjsua_media.c

    r4474 r4537  
    593593static void ice_failed_nego_cb(void *user_data) 
    594594{ 
    595     int call_id = (int)(long)user_data; 
     595    int call_id = (int)(pj_ssize_t)user_data; 
    596596    pjsua_call *call = NULL; 
    597597    pjsip_dialog *dlg = NULL; 
     
    642642                /* Defer the callback to a timer */ 
    643643                pjsua_schedule_timer2(&ice_failed_nego_cb, 
    644                                       (void*)(long)call->index, 1); 
     644                                      (void*)(pj_ssize_t)call->index, 1); 
    645645            } 
    646646        } 
Note: See TracChangeset for help on using the changeset viewer.