mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-04 21:50:54 +03:00
Removed duplicate return statements
This commit is contained in:
parent
f1c66a0ba5
commit
9d701a0026
|
@ -43,14 +43,12 @@ void *
|
||||||
ImagingError_ModeError(void)
|
ImagingError_ModeError(void)
|
||||||
{
|
{
|
||||||
return ImagingError_ValueError("bad image mode");
|
return ImagingError_ValueError("bad image mode");
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void *
|
void *
|
||||||
ImagingError_Mismatch(void)
|
ImagingError_Mismatch(void)
|
||||||
{
|
{
|
||||||
return ImagingError_ValueError("images don't match");
|
return ImagingError_ValueError("images don't match");
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void *
|
void *
|
||||||
|
|
Loading…
Reference in New Issue
Block a user