X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Funit%2Ftest_utils_compat_poll.c;h=0cb7b23872908e2b0305db0144a26d75f9159464;hp=436af5f6f24e1c57ef77fbbc973205cb86d9441c;hb=c26ada1f972a9f76ec75daf036e31bf05e1bfa7f;hpb=49bac6bf673c3a156f27313d875c89df9717dd2f diff --git a/tests/unit/test_utils_compat_poll.c b/tests/unit/test_utils_compat_poll.c index 436af5f6f..0cb7b2387 100644 --- a/tests/unit/test_utils_compat_poll.c +++ b/tests/unit/test_utils_compat_poll.c @@ -238,16 +238,18 @@ static int run_active_set_combination(unsigned int fd_count, /* Write one byte for all active fds that should be active. */ for (i = 0; i < fd_count; i++) { - struct lttng_pipe *pipe; + struct lttng_pipe *borrowed_pipe; /* Should this fd be made active? */ if (!(active_fds_mask & (1 << i))) { continue; } - pipe = lttng_dynamic_pointer_array_get_pointer(&pipes, i); + borrowed_pipe = lttng_dynamic_pointer_array_get_pointer( + &pipes, i); - ret = lttng_pipe_write(pipe, &(char) {'a'}, sizeof(char)); + ret = lttng_pipe_write( + borrowed_pipe, &(char){'a'}, sizeof(char)); if (ret != sizeof(char)) { diag("Failed to write to pipe"); ret = -1;