summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-03-27 21:58:10 +0000
committerMark Spencer <markster@digium.com>2005-03-27 21:58:10 +0000
commitdf81f135e4777b26599e9a92b2310dc3a037f353 (patch)
tree3de9dc9b58bf1e5e0696cb2c990741250436f822
parenta35dab18bda47e76ca468cccaa604ed4a929c778 (diff)
GCC 4 fix (bug #3875)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5274 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index a6308a201..d2ac71a24 100755
--- a/channel.c
+++ b/channel.c
@@ -287,7 +287,7 @@ int ast_best_codec(int fmts)
static const struct ast_channel_tech null_tech = {
.type = "NULL",
- .description "Null channel (should not see this)",
+ .description = "Null channel (should not see this)",
};
struct ast_channel *ast_channel_alloc(int needqueue)