On Thu, 31 Jan 2019 18:58:09 +0100
Davide Caratti <dcara...@redhat.com> wrote:

> +             print_uint(PRINT_ANY, "code", "%hu ", ops[i].code);
> +             print_uint(PRINT_ANY, "jt", "%hhu ", ops[i].jt);
> +             print_uint(PRINT_ANY, "jf", "%hhu ", ops[i].jf);

Did you know that print_uint promotes the argument to unsigned int
then you are printing it with %hhu which expects only a u8.

Reply via email to