From: Sjoerd Mullender Date: Thu, 30 Aug 2001 14:37:07 +0000 (+0000) Subject: Removed unreachable return to silence SGI compiler. X-Git-Tag: v2.2a3~209 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89dfe9e292b70782a6a0a10444a0c5e46dc43191;p=python Removed unreachable return to silence SGI compiler. --- diff --git a/Modules/_sre.c b/Modules/_sre.c index 9943c3016e..d6f39a4ca0 100644 --- a/Modules/_sre.c +++ b/Modules/_sre.c @@ -1140,8 +1140,7 @@ SRE_MATCH(SRE_STATE* state, SRE_CODE* pattern, int level) } } - /* shouldn't end up here */ - return SRE_ERROR_ILLEGAL; + /* can't end up here */ } LOCAL(int)