From 8ddce112fee71f3076e7193b9cf515bc73dfcd56 Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Sat, 1 Mar 2025 20:00:22 -0700 Subject: [PATCH] Fix some test function prototypes Signed-off-by: Orion Poplawski --- fabtests/ubertest/config.c | 2 +- fabtests/ubertest/fabtest.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fabtests/ubertest/config.c b/fabtests/ubertest/config.c index 7ab97fc482f..9ac48a80dc3 100644 --- a/fabtests/ubertest/config.c +++ b/fabtests/ubertest/config.c @@ -712,7 +712,7 @@ int fts_info_is_valid(void) return 0; } if (test_info.test_class & (FI_MSG | FI_TAGGED) && - !ft_check_rx_completion(test_info) && + !ft_check_rx_completion() && !ft_use_comp_cntr(test_info.comp_type)) return 0; if (test_info.test_type == FT_TEST_UNIT && diff --git a/fabtests/ubertest/fabtest.h b/fabtests/ubertest/fabtest.h index d9b293d4b4c..bd070af7446 100644 --- a/fabtests/ubertest/fabtest.h +++ b/fabtests/ubertest/fabtest.h @@ -362,7 +362,7 @@ int ft_check_rx_completion(); int ft_check_tx_completion(); int ft_send_sync_msg(); -int ft_recv_n_msg(); +int ft_recv_n_msg(int n); int ft_recv_msg(); int ft_send_msg(); int ft_send_dgram();