summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-02-16 02:54:42 +0000
committerRussell Bryant <russell@russellbryant.com>2009-02-16 02:54:42 +0000
commit96326f5aa1d9b272e6930544f273dd33c62c11f5 (patch)
tree37baa3b02a39c4e26c16347c4095c236ce50eb4b /main
parent115c6abef45c9b66936415c1edf7e8bc086cca79 (diff)
Make the causes array static, and remove the type name as it is not needed.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@175983 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-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;