git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7063 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2-netsec
Kevin P. Fleming 20 years ago
parent ba349963a8
commit f603eb0135

@ -1,5 +1,8 @@
2005-11-10 Kevin P. Fleming <kpfleming@digium.com>
* channels/chan_misdn.c: include stdio.h (issue #5671)
* channels/chan_misdn_config.c: fix prototype warning (issue #5671)
* pbx.c: remove apps that were deprecated before 1.0 was released (issue #5673)
* apps/app_striplsd.c, apps/app_substring.c: remove apps that were deprecated before 1.0 was released (issue #5673)

@ -149,7 +149,7 @@ static inline void free_robin_list_r (struct robin_list *r)
}
}
static void free_robin_list ()
static void free_robin_list ( void )
{
free_robin_list_r(robin);
}

@ -36,6 +36,7 @@
#include <asterisk/strings.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <asterisk/utils.h>
#define AST_LOAD_CFG ast_config_load

Loading…
Cancel
Save