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: https://svn.pjsip.org/repos/pjproject/trunk@635 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/pjsip/src/pjsua-lib/pjsua_call.c b/pjsip/src/pjsua-lib/pjsua_call.c
index e9042670..d5b021f 100644
--- a/pjsip/src/pjsua-lib/pjsua_call.c
+++ b/pjsip/src/pjsua-lib/pjsua_call.c
@@ -1275,8 +1275,8 @@
 	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);