From 1a3ab728b9a49133fb5e8b374d9ba3c2f34c9db7 Mon Sep 17 00:00:00 2001 From: Dan Dennedy Date: Sun, 5 Jan 2014 09:05:30 -0800 Subject: [PATCH] Fix compilation error in previous commit. --- src/framework/mlt_playlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/framework/mlt_playlist.c b/src/framework/mlt_playlist.c index 04eef95a..05a4c1b2 100644 --- a/src/framework/mlt_playlist.c +++ b/src/framework/mlt_playlist.c @@ -1561,11 +1561,11 @@ mlt_producer mlt_playlist_replace_with_blank( mlt_playlist self, int clip ) void mlt_playlist_insert_blank( mlt_playlist self, int clip, int out ) { - if ( self != NULL && length >= 0 ) + if ( self != NULL && out >= 0 ) { mlt_properties properties = MLT_PLAYLIST_PROPERTIES( self ); mlt_events_block( properties, properties ); - mlt_playlist_blank( self, length ); + mlt_playlist_blank( self, out ); mlt_playlist_move( self, self->count - 1, clip ); mlt_events_unblock( properties, properties ); mlt_playlist_virtual_refresh( self ); -- 2.39.2