提交 83253d28 authored 作者: Michael Jerris's avatar Michael Jerris

fix some warnings.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4891 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 6355091e
## Process this file with automake to produce Makefile.in # Process this file with automake to produce Makefile.in
SUBDIRS = man doc Win32 Octave src examples regtest tests SUBDIRS = Win32 Octave src
# man doc Win32 examples regtest tests
DIST_SUBDIRS = $(SUBDIRS) DIST_SUBDIRS = $(SUBDIRS)
EXTRA_DIST = reconfigure.mk acinclude.m4 libsndfile.spec.in \ EXTRA_DIST = reconfigure.mk acinclude.m4 libsndfile.spec.in \
sndfile.pc.in Mingw-make-dist.sh sndfile.pc.in Mingw-make-dist.sh
pkgconfigdir = $(libdir)/pkgconfig pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = sndfile.pc pkgconfig_DATA = sndfile.pc
......
...@@ -50,8 +50,7 @@ ...@@ -50,8 +50,7 @@
#define FREESWITCH_PEN "27880" #define FREESWITCH_PEN "27880"
#define FREESWITCH_OID_PREFIX ".1.3.6.1.4.1." FREESWITCH_PEN #define FREESWITCH_OID_PREFIX ".1.3.6.1.4.1." FREESWITCH_PEN
#define FREESWITCH_ITAD "543" #define FREESWITCH_ITAD "543"
#define __EXTENSIONS__ 1
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
...@@ -60,7 +59,7 @@ ...@@ -60,7 +59,7 @@
#include <setjmp.h> #include <setjmp.h>
#include <ctype.h> #include <ctype.h>
#include <fcntl.h> #include <fcntl.h>
#include <string.h> #include <strings.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <limits.h> #include <limits.h>
#include <sys/types.h> #include <sys/types.h>
......
...@@ -381,7 +381,7 @@ SWITCH_DECLARE(switch_status_t) switch_socket_create(switch_socket_t ** new_sock ...@@ -381,7 +381,7 @@ SWITCH_DECLARE(switch_status_t) switch_socket_create(switch_socket_t ** new_sock
SWITCH_DECLARE(switch_status_t) switch_socket_shutdown(switch_socket_t * sock, switch_shutdown_how_e how) SWITCH_DECLARE(switch_status_t) switch_socket_shutdown(switch_socket_t * sock, switch_shutdown_how_e how)
{ {
return apr_socket_shutdown(sock, how); return apr_socket_shutdown(sock, (apr_shutdown_how_e)how);
} }
SWITCH_DECLARE(switch_status_t) switch_socket_close(switch_socket_t * sock) SWITCH_DECLARE(switch_status_t) switch_socket_close(switch_socket_t * sock)
......
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#include <switch.h> #include <switch.h>
static const switch_state_handler_table_t audio_bridge_peer_state_handlers; static const switch_state_handler_table_t audio_bridge_peer_state_handlers;
static const switch_state_handler_table_t originate_state_handlers;
/* Bridge Related Stuff*/ /* Bridge Related Stuff*/
/*********************************************************************************/ /*********************************************************************************/
......
...@@ -77,7 +77,7 @@ static switch_say_method_t get_say_method_by_name(char *name) ...@@ -77,7 +77,7 @@ static switch_say_method_t get_say_method_by_name(char *name)
return (switch_say_method_t) x; return (switch_say_method_t) x;
} }
static switch_say_method_t get_say_type_by_name(char *name) static switch_say_type_t get_say_type_by_name(char *name)
{ {
int x = 0; int x = 0;
for (x = 0; SAY_TYPE_NAMES[x]; x++) { for (x = 0; SAY_TYPE_NAMES[x]; x++) {
...@@ -86,7 +86,7 @@ static switch_say_method_t get_say_type_by_name(char *name) ...@@ -86,7 +86,7 @@ static switch_say_method_t get_say_type_by_name(char *name)
} }
} }
return (switch_say_method_t) x; return (switch_say_type_t) x;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论