On Thu, Apr 07, 2011 at 04:42:02PM +0530, shivani maheshwari wrote:
> +      out_pixel[3] = (in_pixel[3] == 0) ? 0 : inpixel[3];

There is a typo in the variable name at the end of the line. It should read:
        out_pixel[3] = (in_pixel[3] == 0) ? 0 : in_pixel[3];


Now that I'm looking at this, it looks as if it can be simplified to:
        out_pixel[3] = in_pixel[3];
_______________________________________________
Gimp-developer mailing list
Gimp-developer@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-developer

Reply via email to