aboutsummaryrefslogtreecommitdiffstats
path: root/main/channel.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-09 11:30:15 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-05-09 11:30:15 +0000
commitcc1864f8efcb66b155d3bd03d803e9df3da685cb (patch)
treeeef1ad831363634f5b6051914d1f31358d258979 /main/channel.c
parentca0911df01e6bfaf55b109c04421e84372314d1e (diff)
Declare private data as static.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@193459 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/channel.c b/main/channel.c
index 9839f1921..91bc8869c 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -354,7 +354,7 @@ static void ast_chan_trace_destroy_cb(void *data)
}
/*! \brief Datastore to put the linked list of ast_chan_trace and trace status */
-const struct ast_datastore_info ast_chan_trace_datastore_info = {
+static const struct ast_datastore_info ast_chan_trace_datastore_info = {
.type = "ChanTrace",
.destroy = ast_chan_trace_destroy_cb
};