From 3924c703863deeeaa46652a1159fc07727f5e8e9 Mon Sep 17 00:00:00 2001 From: lwvmobile <59371473+lwvmobile@users.noreply.github.com> Date: Mon, 30 May 2022 03:32:37 -0400 Subject: [PATCH] Fix Compiler Warning the usual %X to %llX warnings I forget to deal with --- src/p25p1_ldu2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p25p1_ldu2.c b/src/p25p1_ldu2.c index 079906a..a939f48 100644 --- a/src/p25p1_ldu2.c +++ b/src/p25p1_ldu2.c @@ -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;