diff options
author | 2016-07-27 09:26:22 +0200 | |
---|---|---|
committer | 2016-07-27 09:26:22 +0200 | |
commit | 4887ce18443a51fd2a861da959082ad346ff4ee2 (patch) | |
tree | f21e5096b569bff399a6e03c09715502ef859c34 /src/lib/util/unicode.cpp | |
parent | 385f433cf4f7c3a2fa6012536a479de6ddddc68a (diff) |
Cleanups and version bump
Diffstat (limited to 'src/lib/util/unicode.cpp')
-rw-r--r-- | src/lib/util/unicode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/unicode.cpp b/src/lib/util/unicode.cpp index 0390576ae9a..0ddee038eee 100644 --- a/src/lib/util/unicode.cpp +++ b/src/lib/util/unicode.cpp @@ -100,7 +100,7 @@ int uchar_from_utf8(unicode_char *uchar, const char *utf8char, size_t count) { auxchar = utf8char[i]; - // all auxillary chars must be between 0x80-0xbf + // all auxillary chars must be between 0x80-0xbf if ((auxchar & 0xc0) != 0x80) return -1; |