summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mupdf/pdf_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mupdf/pdf_image.c b/mupdf/pdf_image.c
index a5cc61d6..5ab0d624 100644
--- a/mupdf/pdf_image.c
+++ b/mupdf/pdf_image.c
@@ -514,7 +514,7 @@ pdf_loadtile(fz_image *img, fz_pixmap *tile)
int sn = src->indexed->base->n;
for (x = 0; x < tile->w; x++)
{
- dst[x * dn] = 255; // alpha
+ dst[x * dn] = 255; /* alpha */
i = st[x] * invbpcfact >> 16;
i = CLAMP(i, 0, high);
for (k = 0; k < sn; k++)