Fixed new pjsua build/makefiles

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@508 74dad513-b988-da41-8d7b-12977e46ad98
diff --git a/pjsip/src/pjsua-lib/pjsua_call.c b/pjsip/src/pjsua-lib/pjsua_call.c
index 92c1f92..208cb97 100644
--- a/pjsip/src/pjsua-lib/pjsua_call.c
+++ b/pjsip/src/pjsua-lib/pjsua_call.c
@@ -1259,7 +1259,7 @@
 	len = pj_ansi_snprintf(buf, end-p, 
 		  "%s  #%d %.*s @%dKHz, %s, peer=%s:%d",
 		  indent, i,
-		  info.stream_info[i].fmt.encoding_name.slen,
+		  (int)info.stream_info[i].fmt.encoding_name.slen,
 		  info.stream_info[i].fmt.encoding_name.ptr,
 		  info.stream_info[i].fmt.clock_rate / 1000,
 		  dir,
@@ -1502,11 +1502,11 @@
 		           "%s  Call time: %02dh:%02dm:%02ds, "
 		           "1st res in %d ms, conn in %dms",
 			   indent,
-		           (duration.sec / 3600),
-		           ((duration.sec % 3600)/60),
-		           (duration.sec % 60),
-		           PJ_TIME_VAL_MSEC(res_delay), 
-		           PJ_TIME_VAL_MSEC(con_delay));
+		           (int)(duration.sec / 3600),
+		           (int)((duration.sec % 3600)/60),
+		           (int)(duration.sec % 60),
+		           (int)PJ_TIME_VAL_MSEC(res_delay), 
+		           (int)PJ_TIME_VAL_MSEC(con_delay));
     
     if (len > 0 && len < end-p) {
 	p += len;