From: Russell Bryant Date: Sat, 9 May 2009 11:30:15 +0000 (+0000) Subject: Declare private data as static. X-Git-Tag: 11.0.0-beta1~4913 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e350686d698056b04052c54df867db627fb3692;p=thirdparty%2Fasterisk.git Declare private data as static. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@193459 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/channel.c b/main/channel.c index 9839f1921d..91bc8869c7 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 };