From: Nick Mathewson Date: Tue, 8 Jun 2004 19:08:45 +0000 (+0000) Subject: Use intptr_t correctly in test.c; try to resolve ia64 warnings X-Git-Tag: debian-version-0.0.7.1-1~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbf9fe57eaeaa37b7507fcf8813b9ce7cfb7db19;p=thirdparty%2Ftor.git Use intptr_t correctly in test.c; try to resolve ia64 warnings svn:r1963 --- diff --git a/src/or/test.c b/src/or/test.c index 70b0b5554d..caf0814762 100644 --- a/src/or/test.c +++ b/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;