mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2026-08-07 09:48:48 +00:00
Remove unused variable
It was assigned a value, but then the value was never used.
This commit is contained in:
parent
57ce430ccd
commit
6674e1c136
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user