Remove confusing ;.

SVN revision: 22182
This commit is contained in:
Kim Woelders 2006-04-17 17:33:04 +00:00
parent 23954d3e9c
commit 57ffc16033
1 changed files with 2 additions and 2 deletions

View File

@ -824,8 +824,8 @@ IsTransparent(Imlib_Image * im, int x, int y)
linear = 4 * (y * imlib_image_get_width() + x);
data = (unsigned char *)imlib_image_get_data();
if (data[linear + 3] != 0xff);
return 0; /* FIXME - Should return 1 but blending needs to be fixed */
if (data[linear + 3] != 0xff)
return 0; /* FIXME - Should return 1 but blending needs to be fixed */
return 0;
}