> Convert ticks to milliseconds.
>
> The 33 milliseconds in the timeout_add_msec(9) call will be truncated
> to 3 ticks, but that was already the case with the current (hz / 30)
> code so this is no worse.

[...]

>               /* allow 1/30 second for heads to settle */
> -             timeout_add(&fdc->fdcpseudointr_to, hz / 30);
> +             timeout_add_msec(&fdc->fdcpseudointr_to, 33);

Why not simply write `1000 / 30' rather than 33, to match the comment?

Reply via email to