mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-22 22:25:51 +01:00
build on 64-bit again
svn:r8801
This commit is contained in:
parent
d48828dbe1
commit
c804eea39d
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue