Cleanup: compiler warnings
This commit is contained in:
@@ -383,7 +383,7 @@ static void mesh_filter_task_cb(void *__restrict userdata,
|
||||
const uint *hash_co = (const uint *)orig_co;
|
||||
const uint hash = BLI_hash_int_2d(hash_co[0], hash_co[1]) ^
|
||||
BLI_hash_int_2d(hash_co[2], ss->filter_cache->random_seed);
|
||||
mul_v3_fl(normal, hash * (1.0f / 0xFFFFFFFF) - 0.5f);
|
||||
mul_v3_fl(normal, hash * (1.0f / (float)0xFFFFFFFF) - 0.5f);
|
||||
mul_v3_v3fl(disp, normal, fade);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -599,7 +599,7 @@ static void rna_float_print(FILE *f, float num)
|
||||
else if (num == FLT_MAX) {
|
||||
fprintf(f, "FLT_MAX");
|
||||
}
|
||||
else if ((fabsf(num) < INT64_MAX) && ((int64_t)num == num)) {
|
||||
else if ((fabsf(num) < (float)INT64_MAX) && ((int64_t)num == num)) {
|
||||
fprintf(f, "%.1ff", num);
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user