From f3d81f6ef5aea1a60700b45d79f14edb4adc8295 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Fri, 2 Mar 2018 01:05:38 +0100 Subject: msc_vlr_tests: make all test functions static All functions in the individual msc_vlr_test_*.c files should be static; hence we would be warned if one of them were unused (forgotten to add to the tests array). Change-Id: Ia169c6a1443a48879ab4777e09c2040c48810bf6 --- tests/msc_vlr/msc_vlr_test_call.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/msc_vlr/msc_vlr_test_call.c') diff --git a/tests/msc_vlr/msc_vlr_test_call.c b/tests/msc_vlr/msc_vlr_test_call.c index cc120c8c4..28540b192 100644 --- a/tests/msc_vlr/msc_vlr_test_call.c +++ b/tests/msc_vlr/msc_vlr_test_call.c @@ -25,7 +25,7 @@ #include -void mncc_sends_to_cc(uint32_t msg_type, struct gsm_mncc *mncc) +static void mncc_sends_to_cc(uint32_t msg_type, struct gsm_mncc *mncc) { mncc->msg_type = msg_type; mncc_tx_to_cc(net, msg_type, mncc); @@ -151,7 +151,7 @@ static void standard_lu() vlr_subscr_put(vsub); } -void test_call_mo() +static void test_call_mo() { struct gsm_mncc mncc = { .imsi = IMSI, @@ -251,7 +251,7 @@ void test_call_mo() comment_end(); } -void test_call_mt() +static void test_call_mt() { struct gsm_mncc mncc = { .imsi = IMSI, -- cgit v1.2.3