]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
declare as static
authorMoises Silva <moy@sangoma.com>
Wed, 14 Apr 2010 14:57:50 +0000 (10:57 -0400)
committerMoises Silva <moy@sangoma.com>
Wed, 14 Apr 2010 22:00:16 +0000 (18:00 -0400)
src/mod/codecs/mod_sangoma_codec/mod_sangoma_codec.c

index e5d05e7e8dfb62cf2400e3353bf594ef4d38c3af..cf57aeed3b83f18c1da114909ff57aabda92c6e8 100644 (file)
@@ -71,10 +71,10 @@ static switch_mutex_t *g_sessions_lock = NULL;
 unsigned long long g_next_session_id = 0;
 
 /* hash of sessions (I think a linked list suits better here, but FS does not have the data type) */
-switch_hash_t *g_sessions_hash = NULL;
+static switch_hash_t *g_sessions_hash = NULL;
 
 /* global memory pool provided by FS */
-switch_memory_pool_t *g_pool = NULL;
+static switch_memory_pool_t *g_pool = NULL;
 
 typedef struct vocallo_codec_s {
        int codec_id; /* vocallo codec ID */