tests: fix old-style function definition

Fix for:
  xua_test.c:575:6: error: old-style function definition [-Werror=old-style-definition]

Change-Id: Iccc942f9f25fb091045d906eb8be658b54c58529
This commit is contained in:
Oliver Smith 2022-11-11 10:13:24 +01:00
parent 2ce7b758e3
commit ef0d676741
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ void *root_ctx = NULL;
const struct log_info log_info = {
};
static void print_help()
static void print_help(void)
{
printf( "options:\n"
" -h --help this text\n"

View File

@ -572,7 +572,7 @@ static void test_rkm(void)
talloc_free(xua);
}
void test_sccp_addr_cmp()
static void test_sccp_addr_cmp(void)
{
int ai;
int bi;