From: Benjamin Peterson Date: Tue, 24 May 2016 05:47:50 +0000 (-0700) Subject: fix indentation and add curlies (closes #27093) X-Git-Tag: v2.7.12rc1~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59dd0e64ad24b0bf35f4900bfe6b1d0f49844ca3;p=thirdparty%2FPython%2Fcpython.git fix indentation and add curlies (closes #27093) --- diff --git a/Modules/cjkcodecs/cjkcodecs.h b/Modules/cjkcodecs/cjkcodecs.h index 399e9dca4051..ac2892dc1bba 100644 --- a/Modules/cjkcodecs/cjkcodecs.h +++ b/Modules/cjkcodecs/cjkcodecs.h @@ -325,22 +325,26 @@ find_pairencmap(ucs2_t body, ucs2_t modifier, min = 0; max = haystacksize; - for (pos = haystacksize >> 1; min != max; pos = (min + max) >> 1) + for (pos = haystacksize >> 1; min != max; pos = (min + max) >> 1) { if (value < haystack[pos].uniseq) { - if (max == pos) break; - else max = pos; + if (max != pos) { + max = pos; + continue; + } } else if (value > haystack[pos].uniseq) { - if (min == pos) break; - else min = pos; + if (min != pos) { + min = pos; + continue; + } } - else - break; + break; + } - if (value == haystack[pos].uniseq) - return haystack[pos].code; - else - return DBCINV; + if (value == haystack[pos].uniseq) { + return haystack[pos].code; + } + return DBCINV; } #endif