From 62b881fc0dad52ec0d26e13b61c119e817ca90c6 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 15 Dec 2012 21:53:56 +0100 Subject: [PATCH] tools: Make two functions of stktest static --- tools/stktest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/stktest.c b/tools/stktest.c index bad15721..688d720b 100644 --- a/tools/stktest.c +++ b/tools/stktest.c @@ -115,8 +115,8 @@ static GAtServer *emulator; /* Emulated modem state variables */ static int modem_mode = 0; -void __stktest_test_next(); -void __stktest_test_finish(gboolean successful); +static void __stktest_test_next(); +static void __stktest_test_finish(gboolean successful); static gboolean create_tcp(void); #define STKTEST_AGENT_ASSERT(expr) \ @@ -3366,7 +3366,7 @@ static void power_down_reply(DBusPendingCall *call, void *user_data) __stktest_test_next(); } -void __stktest_test_finish(gboolean successful) +static void __stktest_test_finish(gboolean successful) { struct test *test = cur_test->data; dbus_bool_t powered = FALSE; @@ -3379,7 +3379,7 @@ void __stktest_test_finish(gboolean successful) power_down_reply, NULL, NULL); } -void __stktest_test_next() +static void __stktest_test_next() { if (cur_test == NULL) cur_test = tests;