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-04-12 06:50:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-12 06:50:21 +0400
commitf8b7cfb6aefa42a8dc44b52c72bb94bdd33236f4 (patch)
treece694faa64589a57ad6a01559368ca3ece6d4461 /intern/utfconv
parent8fb067af93cfd2c64968e1919d75a323c8e01531 (diff)
code cleanup: quiet some mingw warnings.
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 99f5fcb4c2c..b9946a61cdb 100644
--- a/intern/utfconv/utfconv.c
+++ b/intern/utfconv/utfconv.c
@@ -34,7 +34,7 @@ size_t count_utf_8_from_16(const wchar_t *string16)
return 0;
}
- for (i = 0; u = string16[i]; i++) {
+ for (i = 0; (u = string16[i]); i++) {
if (u < 0x0080) {
count += 1;
}