From bbbe7f8bfde3a3d4daf71e6d74b84cd6bbceedc4 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sun, 31 May 2020 00:37:40 -0400 Subject: [PATCH] Rework patty_ax25_address members as uint8_t --- include/patty/ax25/address.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/patty/ax25/address.h b/include/patty/ax25/address.h index c4afbbb..14f0af2 100644 --- a/include/patty/ax25/address.h +++ b/include/patty/ax25/address.h @@ -10,12 +10,12 @@ typedef struct _patty_ax25_address { char callsign[7]; - int ssid; - int last; + uint8_t ssid, + last; union { - int c; - int repeated; + uint8_t c, + repeated; }; } patty_ax25_address;