summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-05-09 11:30:15 +0000
committerRussell Bryant <russell@russellbryant.com>2009-05-09 11:30:15 +0000
commit7e350686d698056b04052c54df867db627fb3692 (patch)
treeeef1ad831363634f5b6051914d1f31358d258979 /main/channel.c
parentfbad7a508d0c8d0b0c75474d2b7f9cbbcaa9b5e1 (diff)
Declare private data as static.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@193459 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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
};