[Bf-blender-cvs] [447cfdca01c] blender2.8: Fix missing newline in error print

Sergey Sharybin noreply at git.blender.org
Thu Nov 22 16:17:26 CET 2018


Commit: 447cfdca01c0b8c2097bc596660b455306886ecd
Author: Sergey Sharybin
Date:   Thu Nov 22 15:08:34 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB447cfdca01c0b8c2097bc596660b455306886ecd

Fix missing newline in error print

===================================================================

M	source/blender/blenkernel/intern/armature.c

===================================================================

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;
 	}



More information about the Bf-blender-cvs mailing list