Ignore:
Timestamp:
Jun 14, 2006 8:22:31 PM (18 years ago)
Author:
bennylp
Message:

Fixed new pjsua build/makefiles

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r503 r508  
    12601260                  "%s  #%d %.*s @%dKHz, %s, peer=%s:%d", 
    12611261                  indent, i, 
    1262                   info.stream_info[i].fmt.encoding_name.slen, 
     1262                  (int)info.stream_info[i].fmt.encoding_name.slen, 
    12631263                  info.stream_info[i].fmt.encoding_name.ptr, 
    12641264                  info.stream_info[i].fmt.clock_rate / 1000, 
     
    15031503                           "1st res in %d ms, conn in %dms", 
    15041504                           indent, 
    1505                            (duration.sec / 3600), 
    1506                            ((duration.sec % 3600)/60), 
    1507                            (duration.sec % 60), 
    1508                            PJ_TIME_VAL_MSEC(res_delay),  
    1509                            PJ_TIME_VAL_MSEC(con_delay)); 
     1505                           (int)(duration.sec / 3600), 
     1506                           (int)((duration.sec % 3600)/60), 
     1507                           (int)(duration.sec % 60), 
     1508                           (int)PJ_TIME_VAL_MSEC(res_delay),  
     1509                           (int)PJ_TIME_VAL_MSEC(con_delay)); 
    15101510     
    15111511    if (len > 0 && len < end-p) { 
Note: See TracChangeset for help on using the changeset viewer.