cosmetics: Fix typo in function name.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24514 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-09-15 10:07:08 +00:00
parent dca2352543
commit c7303ab055
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ void ty_ClearOSD( int start );
#define TMF_SIG "showing.xml"
// ===========================================================================
static int ty_extensionis(const char *name, const char *ext )
static int ty_extension(const char *name, const char *ext )
{
int delta = strlen(name) - strlen(ext);
if (delta < 0) return 0;
@ -165,7 +165,7 @@ static int ty_tmf_filetoparts( demuxer_t *demux, TiVoInfo *tivo )
if ( offset + skip > totalsize )
size = totalsize - offset;
isty = ty_extensionis( name, ".ty" );
isty = ty_extension( name, ".ty" );
mp_msg( MSGT_DEMUX, MSGL_DBG3, "name %-20.20s size %-12.12s %d %d\n",
name, sizestr, size, isty );