typo fix: inited --> initialized

Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2008-02-13 09:26:10 +00:00
parent f1cc49a68e
commit 5e53486545
15 changed files with 47 additions and 47 deletions

View File

@@ -1254,11 +1254,11 @@ unsigned avcodec_build( void )
void avcodec_init(void)
{
static int inited = 0;
static int initialized = 0;
if (inited != 0)
if (initialized != 0)
return;
inited = 1;
initialized = 1;
dsputil_static_init();
}