Description: Fix -Werror=format-security
Author: Gabriele Giacone <1o5g4r8o@gmail.com>

Index: critterding.git/src/common/be_physics_debug_renderer.cpp
===================================================================
--- critterding.git.orig/src/common/be_physics_debug_renderer.cpp
+++ critterding.git/src/common/be_physics_debug_renderer.cpp
@@ -111,7 +111,7 @@ void	BePhysicsDebugRenderer::draw3dText(
 
 void	BePhysicsDebugRenderer::reportErrorWarning(const char* warningString)
 {
-	printf(warningString);
+	printf("%s\n", warningString);
 }
 
 void	BePhysicsDebugRenderer::drawContactPoint(const btVector3& pointOnB,const btVector3& normalOnB,btScalar distance,int lifeTime,const btVector3& color)
