[gimp] file-gif-save: Delete dead variables and assignments



commit 70a6f7e6bfdf36ed88422bc4b7f5046c39cf9e14
Author: Mukund Sivaraman <muks banu com>
Date:   Mon Oct 10 10:05:05 2011 +0530

    file-gif-save: Delete dead variables and assignments

 plug-ins/common/file-gif-save.c |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)
---
diff --git a/plug-ins/common/file-gif-save.c b/plug-ins/common/file-gif-save.c
index b2c4704..a36d2aa 100644
--- a/plug-ins/common/file-gif-save.c
+++ b/plug-ins/common/file-gif-save.c
@@ -1399,7 +1399,6 @@ gif_encode_header (FILE     *fp,
 {
   int B;
   int RWidth, RHeight;
-  int LeftOfs, TopOfs;
   int Resolution;
   int ColorMapSize;
   int i;
@@ -1408,7 +1407,6 @@ gif_encode_header (FILE     *fp,
 
   RWidth = Width = GWidth;
   RHeight = Height = GHeight;
-  LeftOfs = TopOfs = 0;
 
   Resolution = BitsPerPixel;
 
@@ -1491,11 +1489,8 @@ gif_encode_graphic_control_ext (FILE    *fp,
                                 int      BitsPerPixel,
                                 ifunptr  get_pixel)
 {
-  int LeftOfs, TopOfs;
-
   Width = GWidth;
   Height = GHeight;
-  LeftOfs = TopOfs = 0;
 
   /*
    * Calculate number of bits we are expecting



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