Comment out dead assignment(s).

SVN revision: 50715
This commit is contained in:
Christopher Michael 2010-07-31 07:13:21 +00:00
parent f1c4520420
commit 3328859a0e
2 changed files with 5 additions and 2 deletions

View File

@ -198,8 +198,8 @@ rectangular_init_geom(RGBA_Gradient *gr)
}
gr->type.gdata = rectangular_data;
if (!gr->type.params || !*(gr->type.params))
return;
if (!gr->type.params || !*(gr->type.params))
return;
s = strdup(gr->type.params);
if (!s) return;

View File

@ -315,8 +315,11 @@ evas_common_scale_rgba_mipmap_down_2x2_mmx(DATA32 *src, DATA32 *dst, int src_w,
if (dst_w < 1) dst_w = 1;
if (dst_h < 1) dst_h = 1;
/* NB: Dead assignments (reassigned to different values below)
src_ptr = src;
src_ptr2 = src + src_w;
*/
dst_ptr = dst;
for (y = 0; y < dst_h; y++)
{