From: Moises Silva Date: Wed, 14 Apr 2010 14:57:50 +0000 (-0400) Subject: declare as static X-Git-Tag: git2svn-syncpoint-master~227 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=baeb85350c66a91a8146b76f5775f0a8724f88fb;p=thirdparty%2Ffreeswitch.git declare as static --- diff --git a/src/mod/codecs/mod_sangoma_codec/mod_sangoma_codec.c b/src/mod/codecs/mod_sangoma_codec/mod_sangoma_codec.c index e5d05e7e8d..cf57aeed3b 100644 --- a/src/mod/codecs/mod_sangoma_codec/mod_sangoma_codec.c +++ b/src/mod/codecs/mod_sangoma_codec/mod_sangoma_codec.c @@ -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 */