From 67f0da5ae9ddb8380ea62977f4b3e002635dcaa0 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 8 Jun 2004 19:08:45 +0000 Subject: [PATCH] Use intptr_t correctly in test.c; try to resolve ia64 warnings svn:r1963 --- trunk/src/or/test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/or/test.c b/trunk/src/or/test.c index 70b0b5554d..caf0814762 100644 --- a/trunk/src/or/test.c +++ b/trunk/src/or/test.c @@ -494,7 +494,7 @@ test_util() { static void* _squareAndRemoveK4(const char *key, void*val, void *data) { int *ip = (int*)data; - int v; + intptr_t v; if (strcmp(key,"K4") == 0) { ++(*ip); return NULL;