fix some warnings.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4891 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-04-08 16:11:03 +00:00
parent 6355091e0b
commit 83253d287c
5 changed files with 9 additions and 10 deletions

View File

@ -1,10 +1,11 @@
## 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)
EXTRA_DIST = reconfigure.mk acinclude.m4 libsndfile.spec.in \
sndfile.pc.in Mingw-make-dist.sh
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = sndfile.pc

View File

@ -50,8 +50,7 @@
#define FREESWITCH_PEN "27880"
#define FREESWITCH_OID_PREFIX ".1.3.6.1.4.1." FREESWITCH_PEN
#define FREESWITCH_ITAD "543"
#define __EXTENSIONS__ 1
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
@ -60,7 +59,7 @@
#include <setjmp.h>
#include <ctype.h>
#include <fcntl.h>
#include <string.h>
#include <strings.h>
#include <sys/stat.h>
#include <limits.h>
#include <sys/types.h>

View File

@ -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)
{
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)

View File

@ -31,7 +31,6 @@
#include <switch.h>
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*/
/*********************************************************************************/

View File

@ -77,7 +77,7 @@ static switch_say_method_t get_say_method_by_name(char *name)
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;
for (x = 0; SAY_TYPE_NAMES[x]; x++) {
@ -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;
}