From: Denis Kenzior Date: Tue, 9 Oct 2012 02:45:42 +0000 (-0500) Subject: stktest: Make some variables static X-Git-Tag: 1.12~253 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=83c00d9f8d6ba200a2fb9602be33ac26d6fc4872;p=platform%2Fupstream%2Fofono.git stktest: Make some variables static --- diff --git a/tools/stktest.c b/tools/stktest.c index fa8969f..17d1aeb 100644 --- a/tools/stktest.c +++ b/tools/stktest.c @@ -82,15 +82,15 @@ struct test { static GMainLoop *main_loop = NULL; static volatile sig_atomic_t __terminated = 0; -GList *tests = NULL; -GList *cur_test = NULL; +static GList *tests = NULL; +static GList *cur_test = NULL; /* DBus related */ static DBusConnection *conn; static gboolean ofono_running = FALSE; static guint modem_changed_watch; -enum test_state state; -DBusMessage *pending = NULL; +static enum test_state state; +static DBusMessage *pending = NULL; /* Emulator setup */ static guint server_watch;