mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
Removed unused argument
This commit is contained in:
parent
7538864839
commit
341802c2dc
|
@ -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;
|
||||
|
@ -1574,7 +1574,7 @@ convert(
|
|||
}
|
||||
|
||||
if (dither && strcmp(mode, "1") == 0) {
|
||||
return tobilevel(imOut, imIn, dither);
|
||||
return tobilevel(imOut, imIn);
|
||||
}
|
||||
|
||||
/* standard conversion machinery */
|
||||
|
|
Loading…
Reference in New Issue
Block a user