Changeset 393 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_settings.c
- Timestamp:
- Apr 6, 2006 9:08:35 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_settings.c
r390 r393 685 685 pj_gettimeofday(&now); 686 686 PJ_TIME_VAL_SUB(now, stat.rx.update); 687 sprintf(last_update, "%02 dh:%02dm:%02d.%03ds ago",687 sprintf(last_update, "%02ldh:%02ldm:%02ld.%03lds ago", 688 688 now.sec / 3600, 689 689 (now.sec % 3600) / 60, … … 730 730 pj_gettimeofday(&now); 731 731 PJ_TIME_VAL_SUB(now, stat.tx.update); 732 sprintf(last_update, "%02 dh:%02dm:%02d.%03ds ago",732 sprintf(last_update, "%02ldh:%02ldm:%02ld.%03lds ago", 733 733 now.sec / 3600, 734 734 (now.sec % 3600) / 60,
Note: See TracChangeset
for help on using the changeset viewer.