From 5f7ae296a3be5f38f95e50be8d60b59231c63f1c Mon Sep 17 00:00:00 2001 From: Brian West Date: Sun, 27 Jan 2008 02:50:50 +0000 Subject: [PATCH] cleanup git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7379 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/codecs/mod_g729/mod_g729.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mod/codecs/mod_g729/mod_g729.c b/src/mod/codecs/mod_g729/mod_g729.c index 612ab6d266..9d453ae1ef 100644 --- a/src/mod/codecs/mod_g729/mod_g729.c +++ b/src/mod/codecs/mod_g729/mod_g729.c @@ -252,7 +252,7 @@ static switch_codec_implementation_t g729_30ms_8k_implementation = { /*.encode */ switch_g729_encode, /*.decode */ switch_g729_decode, /*.destroy */ switch_g729_destroy, - &g729_40ms_8k_implementation + /*.next */ &g729_40ms_8k_implementation }; static switch_codec_implementation_t g729_10ms_8k_implementation = { @@ -274,7 +274,7 @@ static switch_codec_implementation_t g729_10ms_8k_implementation = { /*.encode */ switch_g729_encode, /*.decode */ switch_g729_decode, /*.destroy */ switch_g729_destroy, - &g729_30ms_8k_implementation + /*.next */ &g729_30ms_8k_implementation }; static switch_codec_implementation_t g729_8k_implementation = { @@ -296,7 +296,7 @@ static switch_codec_implementation_t g729_8k_implementation = { /*.encode */ switch_g729_encode, /*.decode */ switch_g729_decode, /*.destroy */ switch_g729_destroy, - &g729_10ms_8k_implementation + /*.next */ &g729_10ms_8k_implementation }; SWITCH_MODULE_LOAD_FUNCTION(mod_g729_load)