Skip to content

Commit

Permalink
Removed unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Feb 18, 2022
1 parent 7538864 commit 341802c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libImaging/Convert.c
Expand Up @@ -1447,7 +1447,7 @@ topalette(
}

static Imaging
tobilevel(Imaging imOut, Imaging imIn, int dither) {
tobilevel(Imaging imOut, Imaging imIn) {
ImagingSectionCookie cookie;
int x, y;
int *errors;
Expand Down Expand Up @@ -1574,7 +1574,7 @@ convert(
}

if (dither && strcmp(mode, "1") == 0) {
return tobilevel(imOut, imIn, dither);
return tobilevel(imOut, imIn);
}

/* standard conversion machinery */
Expand Down

0 comments on commit 341802c

Please sign in to comment.