aboutsummaryrefslogtreecommitdiff
path: root/client/main.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-09-26 00:31:15 -0400
committerIan Moffett <ian@osmora.org>2024-09-26 00:31:15 -0400
commitb132db61e45603878944e2cd11ea9334838d274d (patch)
tree5f05adf47dda300bd08dc6eb3796e24011214b2b /client/main.c
parent1c630b1722da9a6c15e206f0405e36468f1a48f1 (diff)
project: Use unsigned byte for data
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'client/main.c')
-rw-r--r--client/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/main.c b/client/main.c
index 1551065..e6fcb7a 100644
--- a/client/main.c
+++ b/client/main.c
@@ -39,7 +39,7 @@
#define OSTP_PORT 5352
static void
-log_pubkey(unsigned char *pubkey)
+log_pubkey(uint8_t pubkey[])
{
for (size_t i = 0; i < 32; ++i) {
printf("%02X ", pubkey[i] & 0xFF);