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-12-09 09:15:21 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-09 09:15:21 +0400
commitf795e1cfd23f1e610dfd22c005e5f4a09de4886a (patch)
tree8680e266ed615063b59a769009f47c3e199ddcb3 /source/blender/blenlib/intern/string_cursor_utf8.c
parent78c7951463502e6711099efdafb5f94a045aeec7 (diff)
style cleanup
Diffstat (limited to 'source/blender/blenlib/intern/string_cursor_utf8.c')
-rw-r--r--source/blender/blenlib/intern/string_cursor_utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/string_cursor_utf8.c b/source/blender/blenlib/intern/string_cursor_utf8.c
index 8e8b23bd666..c364d22b75b 100644
--- a/source/blender/blenlib/intern/string_cursor_utf8.c
+++ b/source/blender/blenlib/intern/string_cursor_utf8.c
@@ -150,7 +150,7 @@ void BLI_str_cursor_step_utf8(const char *str, size_t maxlen,
* list of special character, ctr -> */
while (TRUE) {
if ((jump != STRCUR_JUMP_ALL) && (delim_type != cursor_delim_type(&str[*pos]))) {
- break;
+ break;
}
else if ((*pos) >= maxlen) {
break;