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:
authorMatt Ebb <matt@mke3.net>2010-06-03 11:47:49 +0400
committerMatt Ebb <matt@mke3.net>2010-06-03 11:47:49 +0400
commit115b0e2c0baf62a767fea1ff89d93195cc45fa79 (patch)
treee1e91e35f16d7c3c1b735af4401f3e743e08471f /source/blender/editors/mesh/editmesh_tools.c
parent1b517c0926a3f3ab81bf2c1392229bc6b70fecd4 (diff)
silly compile fix
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 64c4a76ae9d..13656ca1b7e 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -485,7 +485,7 @@ static int removedoublesflag_exec(bContext *C, wmOperator *op)
int count = removedoublesflag(em,1,0,RNA_float_get(op->ptr, "limit"));
if(count)
- BKE_reportf(op->reports, RPT_INFO, "Removed %d vertices", cnt);
+ BKE_reportf(op->reports, RPT_INFO, "Removed %d vertices", count);
DAG_id_flush_update(obedit->data, OB_RECALC_DATA);
WM_event_add_notifier(C, NC_GEOM|ND_DATA, obedit->data);