Removed unused variable

This commit is contained in:
Andrew Murray 2024-08-06 13:32:46 +10:00
parent 1fd4d14782
commit 5e8dbbbf9e

View File

@ -308,11 +308,10 @@ mergesort_pixels(PixelList *head, int i) {
#ifdef DEBUG
static int
test_sorted(PixelList *pl[3]) {
int i, n, l;
int i, l;
PixelList *t;
for (i = 0; i < 3; i++) {
n = 0;
l = 256;
for (t = pl[i]; t; t = t->next[i]) {
if (l < t->p.a.v[i])