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-05-09 09:09:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-09 09:09:07 +0400
commitb93594bf3019ba3c412b7291f4a5cdfc9752dcf8 (patch)
tree78c63a21e9a002f9f5f705621192d213ff655659 /source/blender/makesrna/intern/rna_mesh_api.c
parent5a2a3d7d82933be392d8a24937b230b2ab4d7af7 (diff)
quiet more compiler warnings, also found a bug using printf rather then fprintf.
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh_api.c b/source/blender/makesrna/intern/rna_mesh_api.c
index 8912a576710..d237664df0f 100644
--- a/source/blender/makesrna/intern/rna_mesh_api.c
+++ b/source/blender/makesrna/intern/rna_mesh_api.c
@@ -44,7 +44,7 @@
#ifdef RNA_RUNTIME
const char *rna_Mesh_unit_test_compare(struct Mesh *mesh, bContext *C, struct Mesh *mesh2)
{
- char *ret = mesh_cmp(mesh, mesh2, FLT_EPSILON*60);
+ const char *ret = mesh_cmp(mesh, mesh2, FLT_EPSILON*60);
if (!ret)
ret = "Same";