[Freeswitch-svn] [commit] r5792 - in freeswitch/trunk/src: . include/private

Freeswitch SVN mikej at freeswitch.org
Thu Oct 4 09:17:57 EDT 2007


Author: mikej
Date: Thu Oct  4 09:17:56 2007
New Revision: 5792

Modified:
   freeswitch/trunk/src/include/private/switch_core_pvt.h
   freeswitch/trunk/src/switch_console.c
   freeswitch/trunk/src/switch_ivr_async.c

Log:
var types, build errors fix.

Modified: freeswitch/trunk/src/include/private/switch_core_pvt.h
==============================================================================
--- freeswitch/trunk/src/include/private/switch_core_pvt.h	(original)
+++ freeswitch/trunk/src/include/private/switch_core_pvt.h	Thu Oct  4 09:17:56 2007
@@ -156,7 +156,7 @@
 	switch_mutex_t *throttle_mutex;
 	uint32_t sps_total;
 	int32_t sps;
-	uint32_t hard_log_level;
+	switch_log_level_t hard_log_level;
 };
 
 extern struct switch_runtime runtime;

Modified: freeswitch/trunk/src/switch_console.c
==============================================================================
--- freeswitch/trunk/src/switch_console.c	(original)
+++ freeswitch/trunk/src/switch_console.c	Thu Oct  4 09:17:56 2007
@@ -300,7 +300,7 @@
 	gethostname(hostname, sizeof(hostname));
 
 	while (running) {
-		uint32_t arg;
+		int32_t arg;
 #ifndef _MSC_VER
 		fd_set rfds, efds;
 		struct timeval tv = { 0, 20000 };

Modified: freeswitch/trunk/src/switch_ivr_async.c
==============================================================================
--- freeswitch/trunk/src/switch_ivr_async.c	(original)
+++ freeswitch/trunk/src/switch_ivr_async.c	Thu Oct  4 09:17:56 2007
@@ -303,7 +303,7 @@
 	switch_status_t status;
 	time_t to = 0;
 	switch_media_bug_flag_t flags = SMBF_READ_STREAM | SMBF_WRITE_STREAM;
-	int channels;
+	uint8_t channels;
 	channel = switch_core_session_get_channel(session);
 	assert(channel != NULL);
 



More information about the Freeswitch-svn mailing list