Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-05-27 04:36:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-27 04:36:50 +0400
commit857dedbc584fcf0af0afa13f008377fd9a83dad1 (patch)
tree1a6d3fa834658422032f4de3140472b82a8cbfa6 /intern/utfconv
parent822362189badefd6c0014f608d36d98e8ab57282 (diff)
style cleanup
Diffstat (limited to 'intern/utfconv')
-rw-r--r--intern/utfconv/utfconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/utfconv/utfconv.c b/intern/utfconv/utfconv.c
index b9946a61cdb..189141e487d 100644
--- a/intern/utfconv/utfconv.c
+++ b/intern/utfconv/utfconv.c
@@ -132,7 +132,7 @@ int conv_utf_16_to_8(const wchar_t *in16, char *out8, size_t size8)
else if (u < 0xD800 || u >= 0xE000) {
if (out8 + 2 >= out8end) break;
*out8++ = (0x7 << 5) | (0xF & (u >> 12));
- *out8++ = (0x1 << 7) | (0x3F & (u >> 6));;
+ *out8++ = (0x1 << 7) | (0x3F & (u >> 6));
*out8 = (0x1 << 7) | (0x3F & (u));
}
else if (u < 0xDC00) {