[gimp/metadata-browser] warp: Delete dead variable and assignment



commit 09a9728a08f107c97a65c37c6becddb980c8f4ac
Author: Mukund Sivaraman <muks banu com>
Date:   Wed Oct 12 16:52:46 2011 +0530

    warp: Delete dead variable and assignment

 plug-ins/common/warp.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/plug-ins/common/warp.c b/plug-ins/common/warp.c
index 11105a3..7dfaa32 100644
--- a/plug-ins/common/warp.c
+++ b/plug-ins/common/warp.c
@@ -1303,7 +1303,7 @@ warp_one (GimpDrawable *draw,
   gint    dmap_bytes=-1;
 
   guchar *destrow, *dest;
-  guchar *srcrow, *src;
+  guchar *srcrow;
   guchar *mxrow=NULL, *mx;  /* NULL ptr. to make gcc's -Wall fn. happy */
   guchar *myrow=NULL, *my;
 
@@ -1419,7 +1419,6 @@ warp_one (GimpDrawable *draw,
        /* loop over destination pixels */
        for (y = dest_rgn.y; y < (dest_rgn.y + dest_rgn.h); y++)
          {
-           src = srcrow;
            dest = destrow;
            mx = mxrow;
            my = myrow;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]