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>2014-01-03 14:35:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-03 14:35:29 +0400
commitc5cb42f40285fca072e8378bdadf11c674b90340 (patch)
treeab3908d2f6fb62eaa7405a68aec18d9903e90f30 /source/blender/bmesh/intern/bmesh_operators.c
parenta288644b1eaef1017d21368bd04c3ee1f038ff4c (diff)
Code Cleanup: use bool for bmesh operator boolean mapping functions
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.c b/source/blender/bmesh/intern/bmesh_operators.c
index b4439703c4a..3dca80ca38a 100644
--- a/source/blender/bmesh/intern/bmesh_operators.c
+++ b/source/blender/bmesh/intern/bmesh_operators.c
@@ -1466,7 +1466,7 @@ int BMO_iter_map_value_int(BMOIter *iter)
bool BMO_iter_map_value_bool(BMOIter *iter)
{
BLI_assert(iter->slot->slot_subtype.map == BMO_OP_SLOT_SUBTYPE_MAP_BOOL);
- return **((int **)iter->val);
+ return **((bool **)iter->val);
}
/* error system */