summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsua-lib/pjsua_call.c
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-07-29 20:29:24 +0000
committerBenny Prijono <bennylp@teluu.com>2006-07-29 20:29:24 +0000
commit8437d671f9c4c0fdd2d5d29f8741173391196e1c (patch)
treed3be6f832e41d7f49fabd8cd91996ddd1b392418 /pjsip/src/pjsua-lib/pjsua_call.c
parentdfc70260daca970cc1df362f26fd669d75812eb0 (diff)
Another take at fixing 64bit problems. PJ_MAX_OBJ_NAME is increased to 32 chars (from 16), and check all those sprintf's especially the ones with "%p" format.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@635 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/src/pjsua-lib/pjsua_call.c')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_call.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_call.c b/pjsip/src/pjsua-lib/pjsua_call.c
index e9042670..d5b021fc 100644
--- a/pjsip/src/pjsua-lib/pjsua_call.c
+++ b/pjsip/src/pjsua-lib/pjsua_call.c
@@ -1275,8 +1275,8 @@ static void dump_media_session(const char *indent,
const char *rem_addr;
int rem_port;
const char *dir;
- char last_update[40];
- char packets[16], bytes[16], ipbytes[16];
+ char last_update[64];
+ char packets[32], bytes[32], ipbytes[32];
pj_time_val now;
pjmedia_session_get_stream_stat(session, i, &stat);