remove a warning.

This commit is contained in:
Julia Longtin 2024-05-09 20:40:50 +00:00
parent af4ee51fa7
commit a283551db0

View file

@ -206,7 +206,7 @@ int main(void)
float sumf = 0.0f; float sumf = 0.0f;
for (int l = 0; l < 16; ++l) sumf += ((float *)&resNew1)[l]; for (int l = 0; l < 16; ++l) sumf += ((float *)&resNew1)[l];
printf("Got a res from a Q8 offset by %d: %f\n", ((int)q8ptr) & 0x3F, sumf); printf("Got a res from a Q8 offset by %d: %f\n", ((uint64_t) q8ptr) & 0x3F, sumf);
} }
return 0; return 0;