[3.13] Remove unreachable break statements in _ctypes_test.c (GH-140585) (#140588)

Remove unreachable break statements in _ctypes_test.c (GH-140585)
(cherry picked from commit 2a1c9bd616)

Co-authored-by: Shamil <ashm.tech@proton.me>
This commit is contained in:
Miss Islington (bot) 2025-10-25 17:39:54 +02:00 committed by GitHub
parent 01cab860c0
commit 01f9c51caa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -871,13 +871,10 @@ EXPORT(RECT) ReturnRect(int i, RECT ar, RECT* br, POINT cp, RECT dr,
{
case 0:
return ar;
break;
case 1:
return dr;
break;
case 2:
return gr;
break;
}
return ar;