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
path: root/source
diff options
context:
space:
mode:
authorJoseph Eagar <joeedh@gmail.com>2011-05-12 00:40:03 +0400
committerJoseph Eagar <joeedh@gmail.com>2011-05-12 00:40:03 +0400
commit9f5de68e5333f80ac173550ef337715eb04c897b (patch)
tree8fc71d4539822174f2541d4b6d55f593d0d88818 /source
parentb72f087e7eec3949790df362d05c08476680de4a (diff)
compile fix
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/bmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/bmesh_tools.c b/source/blender/editors/mesh/bmesh_tools.c
index e027aaac34b..b4f95375a05 100644
--- a/source/blender/editors/mesh/bmesh_tools.c
+++ b/source/blender/editors/mesh/bmesh_tools.c
@@ -3554,7 +3554,7 @@ static int knife_cut_exec(bContext *C, wmOperator *op)
BMO_Exec_Op(bm, &bmop);
BMO_Finish_Op(bm, &bmop);
- BLI_ghash_free(gh, NULL, (GHashValFreeFP)WMEM_freeN);
+ BLI_ghash_free(gh, NULL, (GHashValFreeFP)MEM_freeN);
DAG_id_tag_update(obedit->data, OB_RECALC_DATA);
WM_event_add_notifier(C, NC_GEOM|ND_DATA, obedit->data);