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>2011-12-17 06:41:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-17 06:41:53 +0400
commit5c6ee6b523c6a53c310683a9f7fbe5d730db6122 (patch)
tree65e90096612cac887a47ef19d27551e2e0b1cac1 /source/blender/editors/mesh/mesh_navmesh.c
parentdb6cb30941da7899ccafa44c87c17970d134a2c9 (diff)
parent994f4bb3f78a467b6c34e30a9b8868fc4d01caf0 (diff)
svn merge ^/trunk/blender -r42670:42680
Diffstat (limited to 'source/blender/editors/mesh/mesh_navmesh.c')
-rw-r--r--source/blender/editors/mesh/mesh_navmesh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/mesh_navmesh.c b/source/blender/editors/mesh/mesh_navmesh.c
index bb96fe25ffd..5eb1fd234e4 100644
--- a/source/blender/editors/mesh/mesh_navmesh.c
+++ b/source/blender/editors/mesh/mesh_navmesh.c
@@ -529,7 +529,8 @@ void MESH_OT_navmesh_face_copy(struct wmOperatorType *ot)
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
}
-static int compare(const void * a, const void * b){
+static int compare(const void * a, const void * b)
+{
return ( *(int*)a - *(int*)b );
}