From 506a01d84b9577c45ec6f95be15345017c96b809 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Sun, 23 Jul 2006 14:38:49 +0000 Subject: Added 64bit Linux target (x86_64), also fixed compilation warnings when compiling for this target git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@624 74dad513-b988-da41-8d7b-12977e46ad98 --- pjsip/src/test-pjsip/uri_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pjsip/src/test-pjsip/uri_test.c') diff --git a/pjsip/src/test-pjsip/uri_test.c b/pjsip/src/test-pjsip/uri_test.c index a0fc1fb2..da3c1833 100644 --- a/pjsip/src/test-pjsip/uri_test.c +++ b/pjsip/src/test-pjsip/uri_test.c @@ -955,7 +955,7 @@ int uri_test(void) "pjsip_parse_uri() per second " "(tested with %d URI set, with average length of " "%d chars)", - PJ_ARRAY_SIZE(uri_test_array), avg_len); + (int)PJ_ARRAY_SIZE(uri_test_array), avg_len); report_ival("uri-parse-per-sec", max, "URI/sec", desc); @@ -975,7 +975,7 @@ int uri_test(void) "pjsip_uri_print() per second " "(tested with %d URI set, with average length of " "%d chars)", - PJ_ARRAY_SIZE(uri_test_array), avg_len); + (int)PJ_ARRAY_SIZE(uri_test_array), avg_len); report_ival("uri-print-per-sec", max, "URI/sec", desc); @@ -989,7 +989,7 @@ int uri_test(void) "pjsip_uri_cmp() per second " "(tested with %d URI set, with average length of " "%d chars)", - PJ_ARRAY_SIZE(uri_test_array), avg_len); + (int)PJ_ARRAY_SIZE(uri_test_array), avg_len); report_ival("uri-cmp-per-sec", max, "URI/sec", desc); -- cgit v1.2.3