aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-03-20 11:28:46 +0100
committerHarald Welte <laforge@gnumonks.org>2019-03-21 16:02:39 +0000
commitcff2242e686be9ac19ba5757a710bc769a9201ec (patch)
tree03ddfee63ab82fecbd0e7cf349fe317f756dbc54
parentsignal.c: Fix osmo_signal_talloc_ctx_init() (diff)
downloadlibosmocore-cff2242e686be9ac19ba5757a710bc769a9201ec.tar.xz
libosmocore-cff2242e686be9ac19ba5757a710bc769a9201ec.zip
signal.c: Make non-exported tall_sigh_ctx static
As indicated in the commitlog of Id58ca18eb826b8f4183a7cf0dbb2b38cba702a09, the symbol was never exported in a header file, so it should be safe to mark it as static. Change-Id: I7132ffe9a7efcab226cc639d1b2357f7115bcadf
-rw-r--r--src/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/signal.c b/src/signal.c
index be3b7778..f9884198 100644
--- a/src/signal.c
+++ b/src/signal.c
@@ -36,7 +36,7 @@
* \file signal.c */
-void *tall_sigh_ctx;
+static void *tall_sigh_ctx;
static LLIST_HEAD(signal_handler_list);
struct signal_handler {