$OpenBSD: patch-operations_external_tiff-load_c,v 1.1 2016/02/08 19:28:47 landry Exp $

Fix typo to unbreak on big endian archs.

--- operations/external/tiff-load.c.orig	Mon Feb  8 20:22:17 2016
+++ operations/external/tiff-load.c	Mon Feb  8 20:22:26 2016
@@ -505,7 +505,7 @@ load_RGBA(GeglOperation *operation,
       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++)
