On Fri, May 30, 2025 at 10:53:52AM -0400, Chuck Zmudzinski wrote:

[...]
>                       if (booted_partition & 0xfffffff0)
>                               continue;
> 
> [...] Of course this also assumes "booted_partition" is
> declared as an uint32_t, or equivalent.

Maybe use
                        if (booted_partition & (~ 0xf))
                                continue;

instead?

        -is

Reply via email to