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/test/transport_test.c

    r3553 r4537  
    164164    if (sent < 1) { 
    165165        /* Obtain the error code. */ 
    166         send_status = -sent; 
     166        send_status = (int)-sent; 
    167167    } else { 
    168168        send_status = PJ_SUCCESS; 
     
    416416    } 
    417417    timeout_delay.sec = 100; timeout_delay.msec = 0; 
    418     rt_test_data[thread_id].timeout_timer.user_data = (void*)1; 
     418    rt_test_data[thread_id].timeout_timer.user_data = (void*)(pj_ssize_t)1; 
    419419    pjsip_endpt_schedule_timer(endpt, &rt_test_data[thread_id].timeout_timer, 
    420420                               &timeout_delay); 
     
    446446            pj_time_val tx_delay = { 0, 0 }; 
    447447            pj_assert(rt_test_data[thread_id].tx_timer.user_data == NULL); 
    448             rt_test_data[thread_id].tx_timer.user_data = (void*)1; 
     448            rt_test_data[thread_id].tx_timer.user_data = (void*)(pj_ssize_t)1; 
    449449            pjsip_endpt_schedule_timer(endpt, &rt_test_data[thread_id].tx_timer, 
    450450                                       &tx_delay); 
     
    469469    if (rt_test_data[entry->id].tx_timer.user_data == NULL) { 
    470470        pj_time_val delay = { 0, 0 }; 
    471         rt_test_data[entry->id].tx_timer.user_data = (void*)1; 
     471        rt_test_data[entry->id].tx_timer.user_data = (void*)(pj_ssize_t)1; 
    472472        pjsip_endpt_schedule_timer(endpt, &rt_test_data[entry->id].tx_timer, 
    473473                                   &delay); 
     
    586586 
    587587        /* Create thread, suspended. */ 
    588         status = pj_thread_create(pool, "rttest%p", &rt_worker_thread, (void*)(long)i, 0, 
     588        status = pj_thread_create(pool, "rttest%p", &rt_worker_thread,  
     589                                  (void*)(pj_ssize_t)i, 0, 
    589590                                  PJ_THREAD_SUSPENDED, &rt_test_data[i].thread); 
    590591        if (status != PJ_SUCCESS) { 
     
    600601 
    601602        /* Schedule first message transmissions. */ 
    602         rt_test_data[i].tx_timer.user_data = (void*)1; 
     603        rt_test_data[i].tx_timer.user_data = (void*)(pj_ssize_t)1; 
    603604        pjsip_endpt_schedule_timer(endpt, &rt_test_data[i].tx_timer, &delay); 
    604605    } 
Note: See TracChangeset for help on using the changeset viewer.