Removed wayward printf() of a debugging message.

* Removed wayward printf() of a debugging message.
This commit is contained in:
Helvetix Victorinox
2003-08-19 23:32:35 +00:00
parent 90177e1dee
commit 1b232ec01b
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-08-19 Helvetix Victorinox <helvetix@gimp.org>
* Removed wayward printf() of a debugging message.
2003-08-19 Manish Singh <yosh@gimp.org>
* tools/pdbgen/app.pl: Default all strings to validate UTF-8, use

View File

@ -738,8 +738,6 @@ gimp_composite_hardlight_any_any_any_generic (GimpCompositeContext * ctx)
if (src2[b] > 128)
{
tmp = ((gint) 255 - src1[b]) * ((gint) 255 - ((src2[b] - 128) << 1));
printf("tmp %04x\n", tmp);
printf("%d\n", ((gint) 255 - ((src2[b] - 128) << 1)));
dest[b] = (guchar) CLAMP(255 - (tmp >> 8), 0, 255);
}
else