summaryrefslogtreecommitdiff
path: root/src/common/wchar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/wchar.c')
-rw-r--r--src/common/wchar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/wchar.c b/src/common/wchar.c
index 352083d7bb..efaf1c155b 100644
--- a/src/common/wchar.c
+++ b/src/common/wchar.c
@@ -1452,12 +1452,12 @@ pg_utf8_islegal(const unsigned char *source, int length)
a = source[3];
if (a < 0x80 || a > 0xBF)
return false;
- /* FALLTHROUGH */
+ /* FALL THRU */
case 3:
a = source[2];
if (a < 0x80 || a > 0xBF)
return false;
- /* FALLTHROUGH */
+ /* FALL THRU */
case 2:
a = source[1];
switch (*source)
@@ -1483,7 +1483,7 @@ pg_utf8_islegal(const unsigned char *source, int length)
return false;
break;
}
- /* FALLTHROUGH */
+ /* FALL THRU */
case 1:
a = *source;
if (a >= 0x80 && a < 0xC2)