From 1c9550aeb18efb98200e370a2b620e368f74f754 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 5 May 2016 20:46:17 -0500 Subject: [PATCH] t-runner: Fix warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tools/test-runner.c:1363:6: error: no previous declaration for ‘test_stat_queue_entry_destroy’ [-Werror=missing-declarations] void test_stat_queue_entry_destroy(void *data) --- tools/test-runner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-runner.c b/tools/test-runner.c index 7ef84634..6b16cd6f 100644 --- a/tools/test-runner.c +++ b/tools/test-runner.c @@ -1360,7 +1360,7 @@ static void print_results(struct l_queue *test_stat_queue) l_info("%s" CONSOLE_LN_RESET, sep_line); } -void test_stat_queue_entry_destroy(void *data) +static void test_stat_queue_entry_destroy(void *data) { struct test_stats *ts;