mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
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
This commit is contained in:
@@ -638,7 +638,7 @@ static void mgcp_queue_control(struct mgcp_subchannel *sub, int control)
|
||||
return mgcp_queue_frame(sub, &f);
|
||||
}
|
||||
|
||||
static int retrans_pkt(void *data)
|
||||
static int retrans_pkt(const void *data)
|
||||
{
|
||||
struct mgcp_gateway *gw = (struct mgcp_gateway *)data;
|
||||
struct mgcp_message *cur, *exq = NULL, *w, *prev;
|
||||
|
Reference in New Issue
Block a user