Skip to content
Snippets Groups Projects
Commit c804eea3 authored by Roger Dingledine's avatar Roger Dingledine
Browse files

build on 64-bit again

svn:r8801
parent d48828db
No related branches found
No related tags found
No related merge requests found
......@@ -986,9 +986,9 @@ test_smartlist(void)
smartlist_t *primes = smartlist_create();
int i;
for (i=1; i < 10; i += 2)
smartlist_add(odds, (void*)i);
smartlist_add(odds, (void*)(uintptr_t)i);
for (i=0; i < 10; i += 2)
smartlist_add(evens, (void*)i);
smartlist_add(evens, (void*)(uintptr_t)i);
/* add_all */
smartlist_add_all(ints, odds);
......
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