diff options
author | russell <russell@f38db490-d61c-443f-a65b-d21fe96a405b> | 2007-12-12 19:40:02 +0000 |
---|---|---|
committer | russell <russell@f38db490-d61c-443f-a65b-d21fe96a405b> | 2007-12-12 19:40:02 +0000 |
commit | f34463cba480a44c0b85e8ca2513246cddf86a99 (patch) | |
tree | 7a422f0a2a69d3fed59099e951940504943f0566 | |
parent | 4ba0ecb5f0bfbb1a84a8316d15d61b82e29fe610 (diff) |
resolve compiler warning
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@92556 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r-- | res/res_features.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_features.c b/res/res_features.c index 1bac49ce0..865cfd398 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -1059,7 +1059,7 @@ static int ast_feature_interpret(struct ast_channel *chan, struct ast_channel *p struct ast_flags features; int res = FEATURE_RETURN_PASSDIGITS; struct ast_call_feature *feature; - char *dynamic_features; + const char *dynamic_features; char *tmp, *tok; if (sense == FEATURE_SENSE_CHAN) { |