diff options
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 714bddd..c5e87a8 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -172,7 +172,7 @@ LOCAL(int) unicode_member(Py_UNICODE chr, Py_UNICODE* set, Py_ssize_t setlen) if (set[i] == chr) return 1; - return -1; + return 0; } #define BLOOM_MEMBER(mask, chr, set, setlen)\ |