aboutsummaryrefslogtreecommitdiffstats
path: root/main/channel.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-16 02:54:42 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-16 02:54:42 +0000
commitc9c7f06a74126d6f5ecedc3b95b8194399bbcb99 (patch)
tree37baa3b02a39c4e26c16347c4095c236ce50eb4b /main/channel.c
parent6573bfb8eab544bca16a41981260c8f7ceac0971 (diff)
Make the causes array static, and remove the type name as it is not needed.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@175983 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 6c0144491..f09433387 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -131,7 +131,7 @@ static AST_RWLIST_HEAD_STATIC(channels, ast_channel);
*
* \ref causes.h
*/
-const struct ast_cause {
+static const struct {
int cause;
const char *name;
const char *desc;