From 83c00d9f8d6ba200a2fb9602be33ac26d6fc4872 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Mon, 8 Oct 2012 21:45:42 -0500 Subject: [PATCH] stktest: Make some variables static --- tools/stktest.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; -- 2.7.4