diff --git a/test/evsbench.c b/test/evsbench.c index d249040b..0acbf9fe 100644 --- a/test/evsbench.c +++ b/test/evsbench.c @@ -118,7 +118,7 @@ void evs_benchmark (evs_handle_t handle, do { sprintf (buffer, "This is message %d\n", write_count); try_again: - result = evs_mcast_joined (&handle, EVS_TYPE_AGREED, EVS_PRIO_LOW, &iov, 1); + result = evs_mcast_joined (&handle, EVS_TYPE_AGREED, &iov, 1); if (result == EVS_ERR_TRY_AGAIN) { goto try_again; } else { diff --git a/test/testevs.c b/test/testevs.c index ee235511..c228b63d 100644 --- a/test/testevs.c +++ b/test/testevs.c @@ -122,7 +122,7 @@ int main (void) i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i); #endif try_again_one: - result = evs_mcast_joined (&handle, EVS_TYPE_AGREED, EVS_PRIO_LOW, + result = evs_mcast_joined (&handle, EVS_TYPE_AGREED, &iov, 1); if (result == EVS_ERR_TRY_AGAIN) { goto try_again_one; @@ -140,7 +140,7 @@ try_again_one: for (i = 0; i < 500; i++) { sprintf (buffer, "evs_mcast_groups: This is message %d", i); try_again_two: - result = evs_mcast_groups (&handle, EVS_TYPE_AGREED, EVS_PRIO_LOW, + result = evs_mcast_groups (&handle, EVS_TYPE_AGREED, &groups[1], 1, &iov, 1); if (result == EVS_ERR_TRY_AGAIN) { goto try_again_two;