summaryrefslogtreecommitdiff
path: root/channels/chan_h323.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-09-21 14:40:10 +0000
committerRussell Bryant <russell@russellbryant.com>2007-09-21 14:40:10 +0000
commit9f64905d4e2fe7372cc574338e50579455c11602 (patch)
tree9799cdd844ef78877a6446a6746e82e0c090bc9a /channels/chan_h323.c
parent78a94595f6a5543d9155270f9b83145df22d9d24 (diff)
Merged revisions 83432 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r83432 | russell | 2007-09-21 09:37:20 -0500 (Fri, 21 Sep 2007) | 4 lines gcc 4.2 has a new set of warnings dealing with cosnt pointers. This set of changes gets all of Asterisk (minus chan_alsa for now) to compile with gcc 4.2. (closes issue #10774, patch from qwell) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@83433 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_h323.c')
-rw-r--r--channels/chan_h323.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_h323.c b/channels/chan_h323.c
index 7299fbc61..03f05d775 100644
--- a/channels/chan_h323.c
+++ b/channels/chan_h323.c
@@ -311,9 +311,9 @@ static void oh323_destroy_peer(struct oh323_peer *peer)
ast_free(peer);
}
-static int oh323_simulate_dtmf_end(void *data)
+static int oh323_simulate_dtmf_end(const void *data)
{
- struct oh323_pvt *pvt = data;
+ struct oh323_pvt *pvt = (struct oh323_pvt *)data;
if (pvt) {
ast_mutex_lock(&pvt->lock);