Remove unused variable

It was assigned a value, but then the value was never used.
This commit is contained in:
Christophe Fergeau 2014-01-02 18:08:57 +01:00
parent 57ce430ccd
commit 6674e1c136

View File

@ -479,11 +479,9 @@ static void FNAME(compress)(Encoder *encoder)
LzImageSegment *cur_seg = encoder->head_image_segs;
HashEntry *hslot;
PIXEL *ip;
PIXEL *ip_start;
// fetch the first image segment that is not too small
while (cur_seg && ((((PIXEL *)cur_seg->lines_end) - ((PIXEL *)cur_seg->lines)) < 4)) {
ip_start = (PIXEL *)cur_seg->lines;
// coping the segment
if (cur_seg->lines != cur_seg->lines_end) {
ip = (PIXEL *)cur_seg->lines;