Fix another clang-tidy warning (issue #5, part 1).

See https://github.com/fltk/fltk/issues/5

As Manolo pointed out the questionable variable was not used (read)
in this case of the switch statement, hence it can be removed.
This commit is contained in:
Albrecht Schlosser 2018-12-16 13:13:46 +01:00
parent 2e6a4eb69a
commit 59cd39a505

View File

@ -968,10 +968,8 @@ Fl_RGB_Image *Fl_X11_Screen_Driver::read_win_rectangle(int X, int Y, int w, int
line_ptr[2] = cvals[i][2];
if (index_shift > 0) {
index_mask >>= 2;
index_shift -= 2;
} else {
index_mask = 192;
index_shift = 6;
pixel ++;
}