fixeria has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/35677?usp=email )
Change subject: tests/iuup: fix duplicate assignment in def_configure_req ......................................................................
tests/iuup: fix duplicate assignment in def_configure_req
This fixes a -Winitializer-overrides warning thrown by clang.
Change-Id: Id29237d212a05dec1c57bbfd53d9cb7e71ca0991 --- M tests/iuup/iuup_test.c 1 file changed, 11 insertions(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve pespin: Looks good to me, approved
diff --git a/tests/iuup/iuup_test.c b/tests/iuup/iuup_test.c index f3aba66..7798aa2 100644 --- a/tests/iuup/iuup_test.c +++ b/tests/iuup/iuup_test.c @@ -26,7 +26,6 @@ {.used = 1, .id = 2, .IPTI = 1, .subflow_sizes = {0, 0, 0} }, }, /* .delivery_err_sdu = All set to 0 (YES) by default, */ - .IPTIs_present = true, .t_init = { .t_ms = IUUP_TIMER_INIT_T_DEFAULT, .n_max = IUUP_TIMER_INIT_N_DEFAULT }, .t_ta = { .t_ms = IUUP_TIMER_TA_T_DEFAULT, .n_max = IUUP_TIMER_TA_N_DEFAULT }, .t_rc = { .t_ms = IUUP_TIMER_RC_T_DEFAULT, .n_max = IUUP_TIMER_RC_N_DEFAULT },