From ea5f9fee8da4086adeb4ce902e9d58c446ef4ac8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 5 May 2015 15:59:26 +1000 Subject: Cleanup: function arg wrapping --- source/blender/bmesh/operators/bmo_join_triangles.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source/blender/bmesh/operators/bmo_join_triangles.c') diff --git a/source/blender/bmesh/operators/bmo_join_triangles.c b/source/blender/bmesh/operators/bmo_join_triangles.c index 6562f26062f..7fef9e1190a 100644 --- a/source/blender/bmesh/operators/bmo_join_triangles.c +++ b/source/blender/bmesh/operators/bmo_join_triangles.c @@ -45,8 +45,9 @@ #define FACE_OUT (1 << 0) /* assumes edges are validated before reaching this poin */ -static float measure_facepair(const float v1[3], const float v2[3], - const float v3[3], const float v4[3], float limit) +static float measure_facepair( + const float v1[3], const float v2[3], + const float v3[3], const float v4[3], float limit) { /* gives a 'weight' to a pair of triangles that join an edge to decide how good a join they would make */ /* Note: this is more complicated than it needs to be and should be cleaned up.. */ -- cgit v1.2.3