Ignore:
Timestamp:
May 11, 2007 3:14:34 PM (17 years ago)
Author:
bennylp
Message:

HUGE changeset to make the rest of the libraries compile with C++ mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/src/pjstun-srv-test/server.c

    r1091 r1266  
    8888 
    8989    srv->si.thread_cnt = thread_cnt; 
    90     srv->threads = pj_pool_calloc(pool, thread_cnt, sizeof(pj_thread_t*)); 
     90    srv->threads = (pj_thread_t**) 
     91                   pj_pool_calloc(pool, thread_cnt, sizeof(pj_thread_t*)); 
    9192    for (i=0; i<thread_cnt; ++i) { 
    9293        status = pj_thread_create(pool, "worker%p", &worker_thread, 
Note: See TracChangeset for help on using the changeset viewer.