Fix implicit int error

This commit is contained in:
Joseph Eagar 2021-05-27 14:30:45 -07:00
parent 1f19a86150
commit 552e44bd25
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ static int sculpt_face_set_create_exec(bContext *C, wmOperator *op)
BMesh *bm;
BMFace *f;
BMIter iter;
const totface = ss->totfaces;
const int totface = ss->totfaces;
for (int i = 0; i < totface; i++) {
SculptFaceRef fref = BKE_pbvh_table_index_to_face(ss->pbvh, i);