mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 18:56:17 +03:00
Removed unused argument
This commit is contained in:
parent
7538864839
commit
341802c2dc
|
@ -1447,7 +1447,7 @@ topalette(
|
||||||
}
|
}
|
||||||
|
|
||||||
static Imaging
|
static Imaging
|
||||||
tobilevel(Imaging imOut, Imaging imIn, int dither) {
|
tobilevel(Imaging imOut, Imaging imIn) {
|
||||||
ImagingSectionCookie cookie;
|
ImagingSectionCookie cookie;
|
||||||
int x, y;
|
int x, y;
|
||||||
int *errors;
|
int *errors;
|
||||||
|
@ -1574,7 +1574,7 @@ convert(
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dither && strcmp(mode, "1") == 0) {
|
if (dither && strcmp(mode, "1") == 0) {
|
||||||
return tobilevel(imOut, imIn, dither);
|
return tobilevel(imOut, imIn);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* standard conversion machinery */
|
/* standard conversion machinery */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user