Prevent a compiler warning. (variable 'mag' is used uninitialised if iterations...
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Fri, 7 Sep 2007 19:38:04 +0000 (19:38 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Fri, 7 Sep 2007 19:38:04 +0000 (19:38 +0000)
git-svn-id: http://svn.voria.com/code@625 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/modules/lyr_std/mandelbrot.cpp

index 3343bb2..5cc2fdf 100644 (file)
@@ -296,7 +296,7 @@ Mandelbrot::get_color(Context context, const Point &pos)const
                zr_hold;
 
        ColorReal
-               depth, mag;
+               depth, mag(0);
 
        Color
                ret;