Fix Compiler Warning

the usual %X to %llX warnings I forget to deal with
This commit is contained in:
lwvmobile 2022-05-30 03:32:37 -04:00 committed by GitHub
parent 656d7b2add
commit 3924c70386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ int LFSRP(dsd_state * state)
}
fprintf (stderr, "%s", KYEL);
fprintf (stderr, " LDU2 ALG ID: 0x%02X KEY ID: 0x%02X", state->payload_algid, state->payload_keyid);
fprintf (stderr, " LDU2 ALG ID: 0x%02X KEY ID: 0x%02llX", state->payload_algid, state->payload_keyid);
fprintf(stderr, " Next MI: 0x%016X \n", lfsr);
fprintf (stderr, "%s", KNRM);
state->payload_miP = lfsr;