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

Try to fix an intermittent test failure on openbsd.

parent 9dff4169
Branches
Tags
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment