From b132db61e45603878944e2cd11ea9334838d274d Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 26 Sep 2024 00:31:15 -0400 Subject: project: Use unsigned byte for data Signed-off-by: Ian Moffett --- lib/include/net/stpsession.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/include/net/stpsession.h') diff --git a/lib/include/net/stpsession.h b/lib/include/net/stpsession.h index 6564cc4..1b22e1b 100644 --- a/lib/include/net/stpsession.h +++ b/lib/include/net/stpsession.h @@ -66,10 +66,10 @@ * R: Reserved, keep zero. */ struct session_request { - char hash[64]; + uint8_t hash[64]; uint8_t options; - char pubkey[32]; - char pad[8]; + uint8_t pubkey[32]; + uint8_t pad[8]; } PACKED; #endif /* STP_SESSION_H_ */ -- cgit v1.2.3