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



commit 52236da7cb78a36b053721ebe8f801a8bd6ec302
Author: Mukund Sivaraman <muks banu com>
Date:   Thu Oct 6 19:42:47 2011 +0530

    file-gif-save: Delete dead variables and assignments

 plug-ins/common/file-gif-save.c |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)
---
diff --git a/plug-ins/common/file-gif-save.c b/plug-ins/common/file-gif-save.c
index 90f3b77..b2c4704 100644
--- a/plug-ins/common/file-gif-save.c
+++ b/plug-ins/common/file-gif-save.c
@@ -1492,9 +1492,6 @@ gif_encode_graphic_control_ext (FILE    *fp,
                                 ifunptr  get_pixel)
 {
   int LeftOfs, TopOfs;
-  int ColorMapSize;
-
-  ColorMapSize = 1 << BitsPerPixel;
 
   Width = GWidth;
   Height = GHeight;
@@ -1560,13 +1557,10 @@ gif_encode_image_data (FILE    *fp,
 {
   int LeftOfs, TopOfs;
   int Resolution;
-  int ColorMapSize;
   int InitCodeSize;
 
   Interlace = GInterlace;
 
-  ColorMapSize = 1 << BitsPerPixel;
-
   Width = GWidth;
   Height = GHeight;
   LeftOfs = (int) offset_x;
@@ -1637,7 +1631,6 @@ gif_encode_image_data (FILE    *fp,
 #if 0
   /***************************/
   Interlace = GInterlace;
-  ColorMapSize = 1 << BitsPerPixel;
   Width = GWidth;
   Height = GHeight;
   LeftOfs = TopOfs = 0;



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