X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Ffloatautos.C;h=04741afe145fabd6fdefc63b31daab1c641f7bb4;hb=418e8644335db47143bc421f11be2c2e68901d45;hp=4ee1d4070702542362fcf360577d4729f00d91c2;hpb=0c36fdb4fc4d4a2efe353e2b6eb0bf5a1b1485d6;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/floatautos.C b/cinelerra-5.1/cinelerra/floatautos.C index 4ee1d407..04741afe 100644 --- a/cinelerra-5.1/cinelerra/floatautos.C +++ b/cinelerra-5.1/cinelerra/floatautos.C @@ -455,10 +455,10 @@ double FloatAutos::automation_integral(int64_t start, int64_t length, int direct if( end > len ) end = len; while( pos < end ) { int64_t prev_pos = 0, next_pos = len; - FloatAuto *prev = 0, *next = 0; - prev = (FloatAuto*)get_prev_auto(pos, direction, (Auto* &)prev, 0); + Auto *zprev = 0, *znext = 0; + FloatAuto *prev = (FloatAuto*)get_prev_auto(pos, direction, zprev, 0); if( prev ) prev_pos = prev->position; - next = (FloatAuto*)get_next_auto(pos, direction, (Auto* &)next, 0); + FloatAuto *next = (FloatAuto*)get_next_auto(pos, direction, znext, 0); if( next ) next_pos = next->position; if( !prev && !next ) prev = next = (FloatAuto*)default_auto; else if( !prev ) prev = next;