[Freeswitch-svn] [commit] r5339 - freeswitch/trunk/src
Freeswitch SVN
mikej at freeswitch.org
Wed Jun 13 10:45:04 EDT 2007
Author: mikej
Date: Wed Jun 13 10:45:04 2007
New Revision: 5339
Modified:
freeswitch/trunk/src/switch_loadable_module.c
Log:
silly const stuff
Modified: freeswitch/trunk/src/switch_loadable_module.c
==============================================================================
--- freeswitch/trunk/src/switch_loadable_module.c (original)
+++ freeswitch/trunk/src/switch_loadable_module.c Wed Jun 13 10:45:04 2007
@@ -650,7 +650,7 @@
switch_module_load_t load_func_ptr = NULL;
int loading = 1;
const char *err = NULL;
- switch_loadable_module_interface_t *module_interface = NULL;
+ const switch_loadable_module_interface_t *module_interface = NULL;
char derr[512] = "";
switch_memory_pool_t *pool;
@@ -830,7 +830,7 @@
switch_module_load_t load_func_ptr = NULL;
int loading = 1;
const char *err = NULL;
- switch_loadable_module_interface_t *module_interface = NULL;
+ const switch_loadable_module_interface_t *module_interface = NULL;
switch_memory_pool_t *pool;
More information about the Freeswitch-svn
mailing list