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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-11-22 17:08:34 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-11-22 18:17:18 +0300
commit447cfdca01c0b8c2097bc596660b455306886ecd (patch)
tree59e3201f141067dc8eef4525b1c862d0603bd2a0 /source/blender/blenkernel/intern/armature.c
parenta20d350dd50c731c880e5c8099f64396145d3d94 (diff)
Fix missing newline in error print
Diffstat (limited to 'source/blender/blenkernel/intern/armature.c')
-rw-r--r--source/blender/blenkernel/intern/armature.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/armature.c b/source/blender/blenkernel/intern/armature.c
index bd68caf1037..8d526fec43b 100644
--- a/source/blender/blenkernel/intern/armature.c
+++ b/source/blender/blenkernel/intern/armature.c
@@ -1113,7 +1113,7 @@ void armature_deform_verts(
if (bbone_deform == NULL || bbone_deform->pdef_info_array == NULL) {
fprintf(stderr,
"Armature does not have bbone cache %s, "
- "usually happens due to a dependency cycle.",
+ "usually happens due to a dependency cycle.\n",
armOb->id.name + 2);
return;
}