aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-27 21:58:10 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-27 21:58:10 +0000
commit8b9ed53f93eec7648ea478b99d75dc9965827f43 (patch)
tree3de9dc9b58bf1e5e0696cb2c990741250436f822 /channel.c
parent5af466ad25b19e85857feb1d75a5ec6a18268632 (diff)
GCC 4 fix (bug #3875)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5274 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-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)