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