Compositor: fix linear feather falloff in dilate/erode node

The bug only affected debug builds.
This commit is contained in:
Jacques Lucke 2019-06-12 15:52:09 +02:00
parent d788f5231e
commit abd240332d

@ -134,7 +134,8 @@ float *BlurBaseOperation::make_dist_fac_inverse(float rad, int size, int falloff
val = val * (2.0f - val);
break;
case PROP_LIN:
/* fall-through */
/* nothing to do */
break;
#ifndef NDEBUG
case -1:
/* uninitialized! */