diff options
Diffstat (limited to 'ostp.d')
-rw-r--r-- | ostp.d/net/otd_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ostp.d/net/otd_auth.c b/ostp.d/net/otd_auth.c index 9784356..e16d7b2 100644 --- a/ostp.d/net/otd_auth.c +++ b/ostp.d/net/otd_auth.c @@ -35,7 +35,7 @@ #define KEY_BYTE_WIDTH 32 static void -log_pubkey(char pubkey[KEY_BYTE_WIDTH]) +log_pubkey(uint8_t pubkey[KEY_BYTE_WIDTH]) { for (size_t i = 0; i < KEY_BYTE_WIDTH; ++i) { printf("%02X ", pubkey[i] & 0xFF); |