You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/gegl/files/gegl-0.3.4-endian.patch

12 lines
406 B

--- a/operations/external/tiff-load.c
+++ b/operations/external/tiff-load.c
@@ -505,7 +505,7 @@
GeglRectangle line = { 0, p->height - row - 1, p->width, 1 };
#if G_BYTE_ORDER != G_LITTLE_ENDIAN
guint row_start = row * p->width;
- guint row end = row * p->width + p->width;
+ guint row_end = row * p->width + p->width;
guint i;
for (i = row_start; i < row_end; i++)