Skip to content
Snippets Groups Projects
Commit 6cfdc90d authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Use intptr_t when playing with void*s

svn:r1795
parent 8aebd83a
No related branches found
No related tags found
No related merge requests found
......@@ -501,7 +501,7 @@ static void* _squareAndRemoveK4(const char *key, void*val, void *data)
++(*ip);
return NULL;
}
v = (int)val;
v = (intptr_t)val;
return (void*)(v*v);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment