file-gif-save: Remove dead assignments

This commit is contained in:
Mukund Sivaraman
2011-10-03 12:49:06 +05:30
parent a485bac7bc
commit b321f4ec51

View File

@ -1500,7 +1500,6 @@ gif_encode_graphic_control_ext (FILE *fp,
int BitsPerPixel, int BitsPerPixel,
ifunptr get_pixel) ifunptr get_pixel)
{ {
int RWidth, RHeight;
int LeftOfs, TopOfs; int LeftOfs, TopOfs;
int Resolution; int Resolution;
int ColorMapSize; int ColorMapSize;
@ -1508,8 +1507,8 @@ gif_encode_graphic_control_ext (FILE *fp,
ColorMapSize = 1 << BitsPerPixel; ColorMapSize = 1 << BitsPerPixel;
RWidth = Width = GWidth; Width = GWidth;
RHeight = Height = GHeight; Height = GHeight;
LeftOfs = TopOfs = 0; LeftOfs = TopOfs = 0;
Resolution = BitsPerPixel; Resolution = BitsPerPixel;