Browse Source

Use intptr_t correctly in test.c; try to resolve ia64 warnings

svn:r1963
Nick Mathewson 21 years ago
parent
commit
dbf9fe57ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/test.c

+ 1 - 1
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;