19 May
2020
19 May
'20
1:39 p.m.
Hi Martin, On 5/18/20 2:15 PM, Martin Storsjo wrote:
+ int bufsizes[] = { 0, 1, sizeof buffer }; Other parts of the file use sizeof with parentheses. Could you please also add it here? + unsigned int i, j; + + for (j = 0; j < sizeof bufsizes / sizeof bufsizes[0]; j++) { Please use ARRAY_SIZE(bufsizes).
Thanks, Piotr