Fixed compilation error in gsm codec caused by last C++ changes

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1267 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2007-05-11 18:48:23 +00:00
parent a1e6968900
commit 8334ea10e5
1 changed files with 2 additions and 2 deletions

View File

@ -122,8 +122,8 @@ static struct gsm_codec_factory
/* GSM codec private data. */
struct gsm_data
{
gsm_state *encoder;
gsm_state *decoder;
struct gsm_state *encoder;
struct gsm_state *decoder;
pj_bool_t plc_enabled;
#if !PLC_DISABLED
pjmedia_plc *plc;