Ignore:
Timestamp:
Apr 6, 2006 9:08:35 PM (19 years ago)
Author:
bennylp
Message:

Fixed RTCP compilation warnings with gcc

File:
1 edited

Legend:

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

    r390 r393  
    685685            pj_gettimeofday(&now); 
    686686            PJ_TIME_VAL_SUB(now, stat.rx.update); 
    687             sprintf(last_update, "%02dh:%02dm:%02d.%03ds ago", 
     687            sprintf(last_update, "%02ldh:%02ldm:%02ld.%03lds ago", 
    688688                    now.sec / 3600, 
    689689                    (now.sec % 3600) / 60, 
     
    730730            pj_gettimeofday(&now); 
    731731            PJ_TIME_VAL_SUB(now, stat.tx.update); 
    732             sprintf(last_update, "%02dh:%02dm:%02d.%03ds ago", 
     732            sprintf(last_update, "%02ldh:%02ldm:%02ld.%03lds ago", 
    733733                    now.sec / 3600, 
    734734                    (now.sec % 3600) / 60, 
Note: See TracChangeset for help on using the changeset viewer.