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>2014-03-30 22:45:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-30 22:46:19 +0400
commit482201d1a0a2e8002c9c8c8dda9e06b8b5c52fea (patch)
tree376b8c58a78e1c6e506d0c5b8df5ca975d3cd14d /source/blender/collada/ArmatureImporter.cpp
parent0b8774fc427267793b3fc228da4bb0ce63f6cf76 (diff)
Style cleanup
Diffstat (limited to 'source/blender/collada/ArmatureImporter.cpp')
-rw-r--r--source/blender/collada/ArmatureImporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/ArmatureImporter.cpp b/source/blender/collada/ArmatureImporter.cpp
index c52ee656217..e65561cbf74 100644
--- a/source/blender/collada/ArmatureImporter.cpp
+++ b/source/blender/collada/ArmatureImporter.cpp
@@ -346,7 +346,7 @@ void ArmatureImporter::create_armature_bones( )
char * bone_name = (char *)bc_get_joint_name(*ri);
Bone *bone = BKE_armature_find_bone_name(armature, bone_name);
- if(bone) {
+ if (bone) {
fprintf(stderr, "Reuse of child bone [%s] as root bone in same Armature is not supported.\n", bone_name);
continue;
}