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/pjmedia/src/pjmedia/clock_thread.c

    r974 r1266  
    6767                     PJ_EINVAL); 
    6868 
    69     clock = pj_pool_alloc(pool, sizeof(pjmedia_clock)); 
     69    clock = PJ_POOL_ALLOC_T(pool, pjmedia_clock); 
    7070 
    7171     
     
    198198{ 
    199199    pj_timestamp now; 
    200     pjmedia_clock *clock = arg; 
     200    pjmedia_clock *clock = (pjmedia_clock*) arg; 
    201201 
    202202    /* Get the first tick */ 
Note: See TracChangeset for help on using the changeset viewer.