Cleanup: shadow variable warning

This commit is contained in:
Campbell Barton
2021-08-16 18:06:10 +10:00
parent c48a01a88a
commit ddecd7aaca

View File

@@ -643,7 +643,7 @@ static int customdata_compare(
const MPropCol *l2_data = l2->data;
for (int i = 0; i < total_length; i++) {
for (int j = 0; j < 4; j++) {
for (j = 0; j < 4; j++) {
if (fabsf(l1_data[i].color[j] - l2_data[i].color[j]) > thresh) {
return MESHCMP_ATTRIBUTE_VALUE_MISMATCH;
}