From c2ba4f6cd34bcaf908deb0b404d5a8e28fe2f39a Mon Sep 17 00:00:00 2001 From: ddennedy Date: Tue, 3 Mar 2009 04:57:15 +0000 Subject: [PATCH] kino/riff.cc: suppress compiler warning git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1373 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/kino/riff.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/modules/kino/riff.cc b/src/modules/kino/riff.cc index a03f069..f1dbb5c 100644 --- a/src/modules/kino/riff.cc +++ b/src/modules/kino/riff.cc @@ -518,7 +518,7 @@ void RIFFFile::ParseChunk( int parent ) read( fd, &type, sizeof( type ) ); if ( type == make_fourcc( "LIST" ) ) { - typesize = -sizeof( type ); + typesize = (int) -sizeof( type ); fail_if( lseek( fd, typesize, SEEK_CUR ) == ( off_t ) - 1 ); ParseList( parent ); } -- 1.7.4.4