diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-03-22 09:12:59 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-03-22 09:12:59 -0400 |
commit | dae8484107282edde19c766aeb8713dbdcdb03b4 (patch) | |
tree | d3684b1206f6d60faacaef479bdfd0d8fedd72bb /src/test/test_scheduler.c | |
parent | 9dff41694a9706f91ac175ebb7a3e23566dad189 (diff) | |
download | tor-dae8484107282edde19c766aeb8713dbdcdb03b4.tar.gz tor-dae8484107282edde19c766aeb8713dbdcdb03b4.zip |
Try to fix an intermittent test failure on openbsd.
Diffstat (limited to 'src/test/test_scheduler.c')
-rw-r--r-- | src/test/test_scheduler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_scheduler.c b/src/test/test_scheduler.c index 977ce6f8ab..6e9889b48b 100644 --- a/src/test/test_scheduler.c +++ b/src/test/test_scheduler.c @@ -461,11 +461,11 @@ test_scheduler_compare_channels(void *arg) /* * This is to test the different-policies case, which uses the policy - * cast to an intptr_t as an arbitrary but definite thing to compare. + * cast to an uintptr_t as an arbitrary but definite thing to compare. */ mock_cgp_val_1 = tor_malloc_zero(16); mock_cgp_val_2 = tor_malloc_zero(16); - if ( ((intptr_t) mock_cgp_val_1) > ((intptr_t) mock_cgp_val_2) ) { + if ( ((uintptr_t) mock_cgp_val_1) > ((uintptr_t) mock_cgp_val_2) ) { void *tmp = mock_cgp_val_1; mock_cgp_val_1 = mock_cgp_val_2; mock_cgp_val_2 = tmp; |