From c9b46a1c34a6c3efe6882891df7282b37fe52a12 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 3 Nov 2022 11:26:14 +0100 Subject: Support building with -Werror=strict-prototypes / -Werror=old-style-definition Unfortunately "-std=c99" is not sufficient to make gcc ignore code that uses constructs of earlier C standards, which were abandoned in C99. See https://lwn.net/ml/fedora-devel/Y1kvF35WozzGBpc8@redhat.com/ for some related discussion. Change-Id: I79c51b78d1b055361f9ef5434361847353791d0d --- tests/libosmo-gtlv/gtlv_test.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/libosmo-gtlv/gtlv_test.c') diff --git a/tests/libosmo-gtlv/gtlv_test.c b/tests/libosmo-gtlv/gtlv_test.c index 8023699..8711063 100644 --- a/tests/libosmo-gtlv/gtlv_test.c +++ b/tests/libosmo-gtlv/gtlv_test.c @@ -329,7 +329,7 @@ struct ie *t8l8v_tests[] = { t8l8v_test_multi, }; -void test_t8l8v() +void test_t8l8v(void) { test_tlv(__func__, t8l8v_tests, ARRAY_SIZE(t8l8v_tests), &osmo_t8l8v_cfg); } @@ -378,7 +378,7 @@ struct ie *t16l16v_tests[] = { t16l16v_test_multi, }; -void test_t16l16v() +void test_t16l16v(void) { test_tlv(__func__, t16l16v_tests, ARRAY_SIZE(t16l16v_tests), &osmo_t16l16v_cfg); } @@ -521,7 +521,7 @@ const struct osmo_gtlv_cfg txlxv_cfg = { .store_tl = txlxv_store_tl, }; -void test_txlxv() +void test_txlxv(void) { test_tlv(__func__, txlxv_tests, ARRAY_SIZE(txlxv_tests), &txlxv_cfg); } @@ -609,12 +609,12 @@ struct ie *tliv_tests[] = { tliv_test1, }; -void test_tliv() +void test_tliv(void) { test_tlv(__func__, tliv_tests, ARRAY_SIZE(tliv_tests), &osmo_tliv_cfg); } -int main() +int main(int argc, char **argv) { ctx = talloc_named_const(NULL, 0, "gtlv_test"); msgb_talloc_ctx_init(ctx, 0); -- cgit v1.2.3