From: Kevin Day Date: Fri, 4 Mar 2022 03:55:03 +0000 (-0600) Subject: Bugfix: Incorrect code used in UTF8 character code for U+12C1. X-Git-Tag: 0.5.9~98 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=63c22e0e51759409b250d93f1fb5072c892ecc86;p=fll Bugfix: Incorrect code used in UTF8 character code for U+12C1. This bug was discovered due to a CLang warning that GCC did not identify. --- diff --git a/level_0/f_utf/c/utf/private-is_unassigned.c b/level_0/f_utf/c/utf/private-is_unassigned.c index e84a2fb..6965e07 100644 --- a/level_0/f_utf/c/utf/private-is_unassigned.c +++ b/level_0/f_utf/c/utf/private-is_unassigned.c @@ -611,7 +611,7 @@ extern "C" { } // Ethiopic: U+12B7, U+12BF, U+12C1, U+12C6. - if (character == 0xe18ab700 || character == 0xe18abf00 || character == 0x8e18b8100 || character == 0xe18b8600) { + if (character == 0xe18ab700 || character == 0xe18abf00 || character == 0xe18b8100 || character == 0xe18b8600) { return F_true; }