From 1694e82c7c7524d4bac99b40bbc35f4dae933524 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Fri, 19 Jun 2009 10:19:55 +0200 Subject: [PATCH] fixed another 64bit compiler warning --- src/charon/plugins/unit_tester/tests/test_pool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/charon/plugins/unit_tester/tests/test_pool.c b/src/charon/plugins/unit_tester/tests/test_pool.c index 3c792ef..ba5330f 100644 --- a/src/charon/plugins/unit_tester/tests/test_pool.c +++ b/src/charon/plugins/unit_tester/tests/test_pool.c @@ -34,7 +34,7 @@ static void* testing(void *thread) { char buf[256]; - snprintf(buf, sizeof(buf), "%d-%d@strongswan.org", (int)thread, i); + snprintf(buf, sizeof(buf), "%d-%d@strongswan.org", (uintptr_t)thread, i); id[i] = identification_create_from_string(buf); } @@ -70,7 +70,7 @@ static void* testing(void *thread) ******************************************************************************/ bool test_pool() { - int i; + uintptr_t i; void *res; pthread_t thread[THREADS]; -- 2.7.4