From: Shamil Date: Sat, 25 Oct 2025 14:59:12 +0000 (+0300) Subject: Remove unreachable break statements in _ctypes_test.c (#140585) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a1c9bd616b1b3a07c74d280e3f7e2bd94d0cc22;p=thirdparty%2FPython%2Fcpython.git Remove unreachable break statements in _ctypes_test.c (#140585) --- diff --git a/Modules/_ctypes/_ctypes_test.c b/Modules/_ctypes/_ctypes_test.c index 663388050078..a0c9d8b70fee 100644 --- a/Modules/_ctypes/_ctypes_test.c +++ b/Modules/_ctypes/_ctypes_test.c @@ -989,13 +989,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;