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:
authorJoseph Eagar <joeedh@gmail.com>2021-07-12 04:21:10 +0300
committerJoseph Eagar <joeedh@gmail.com>2021-07-12 04:21:10 +0300
commit4e91e72d53162636739415160923194deed66056 (patch)
tree6786d8cb9fd28966e97b839a6035b54b1a93f4a0
parent58b4688c34b9ceaee5be667699e8eff3bbd3ea49 (diff)
Let's try that again
-rw-r--r--source/blender/bmesh/intern/bmesh_inline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_inline.h b/source/blender/bmesh/intern/bmesh_inline.h
index 3350ea90e28..5b4fb35946b 100644
--- a/source/blender/bmesh/intern/bmesh_inline.h
+++ b/source/blender/bmesh/intern/bmesh_inline.h
@@ -79,7 +79,7 @@ BLI_INLINE void _bm_elem_flag_merge(BMHeader *head_a, BMHeader *head_b)
BLI_INLINE void _bm_elem_flag_merge_ex(BMHeader *head_a, BMHeader *head_b, const char hflag_and)
{
- if (((head_a->hflag & head_b->hflag) & hflag_and) == 0LL) {
+ if (((head_a->hflag & head_b->hflag) & hflag_and) == (char)0) {
head_a->hflag &= ~hflag_and;
head_b->hflag &= ~hflag_and;
}