aboutsummaryrefslogtreecommitdiff
path: root/lib/Basic/ConvertUTF.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Basic/ConvertUTF.c')
-rw-r--r--lib/Basic/ConvertUTF.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Basic/ConvertUTF.c b/lib/Basic/ConvertUTF.c
index 49430471c4..e5dd3e6bf5 100644
--- a/lib/Basic/ConvertUTF.c
+++ b/lib/Basic/ConvertUTF.c
@@ -354,7 +354,7 @@ ConversionResult ConvertUTF8toUTF32 (
result = sourceExhausted; break;
}
/* Do this check whether lenient or strict */
- if (! isLegalUTF8(source, extraBytesToRead+1)) {
+ if (!isLegalUTF8(source, extraBytesToRead+1)) {
result = sourceIllegal;
break;
}
@@ -469,7 +469,7 @@ ConversionResult ConvertUTF8toUTF16 (
result = sourceExhausted; break;
}
/* Do this check whether lenient or strict */
- if (! isLegalUTF8(source, extraBytesToRead+1)) {
+ if (!isLegalUTF8(source, extraBytesToRead+1)) {
result = sourceIllegal;
break;
}