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>2013-05-14 10:58:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-14 10:58:35 +0400
commitcfbf9c324b273a4c45aaa7ebc2dca5bdddaa3aa6 (patch)
tree069db7df2f0ee7087dda5939f4832b081e6c8945 /source/blender/blenlib/intern/listbase.c
parent5888830acbf9d5bd2d7bd317928366d45371c507 (diff)
style cleanup
Diffstat (limited to 'source/blender/blenlib/intern/listbase.c')
-rw-r--r--source/blender/blenlib/intern/listbase.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/listbase.c b/source/blender/blenlib/intern/listbase.c
index c5b10de3ff2..8f3d60517ad 100644
--- a/source/blender/blenlib/intern/listbase.c
+++ b/source/blender/blenlib/intern/listbase.c
@@ -584,7 +584,7 @@ void BLI_reverselist(ListBase *lb)
struct Link *curr = lb->first;
struct Link *prev = NULL;
struct Link *next = NULL;
- while(curr) {
+ while (curr) {
next = curr->next;
curr->next = prev;
curr->prev = next;