From 516dbaeb7333fbfd27bf22917ba51f028171b09a Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Mon, 29 Sep 2014 14:52:35 +0900 Subject: [PATCH] Fix for a build error with VS 2013. --- source/blender/bmesh/tools/bmesh_region_match.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/bmesh/tools/bmesh_region_match.c b/source/blender/bmesh/tools/bmesh_region_match.c index ced429e154a..3d1b6bfbcf2 100644 --- a/source/blender/bmesh/tools/bmesh_region_match.c +++ b/source/blender/bmesh/tools/bmesh_region_match.c @@ -628,7 +628,7 @@ static unsigned int bm_uuidwalk_init_from_edge( /** \name Internal UUIDFaceStep API * \{ */ -static int facestep_sort(const void *a, const const void *b) +static int facestep_sort(const void *a, const void *b) { const UUIDFaceStepItem *fstep_a = a; const UUIDFaceStepItem *fstep_b = b;