summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2009-05-22 16:10:33 +0000
committerSean Bright <sean@malleable.com>2009-05-22 16:10:33 +0000
commitfcda626f3cd15eea04270acd4a7ee596b7dc5555 (patch)
tree033f5d634d41a7653c0ba98b8b48921bc313daa5 /channels
parent0510be35649c0962d34b21fffbe745bbb43238d9 (diff)
Fix build under dev mode and remove some casts that are no longer necessary as
a result of the const-ify the world patch. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@196227 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_dahdi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index ce490e6ad..fed6c1264 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -3991,7 +3991,7 @@ static int dahdi_send_keypad_facility_exec(struct ast_channel *chan, const char
{
/* Data will be our digit string */
struct dahdi_pvt *p;
- const char *digits = (const char *) data;
+ const char *digits = data;
if (ast_strlen_zero(digits)) {
ast_debug(1, "No digit string sent to application!\n");