Rework patty_ax25_address members as uint8_t

This commit is contained in:
XANTRONIX Development 2020-05-31 00:37:40 -04:00 committed by XANTRONIX Industrial
parent 8ee2b32342
commit bbbe7f8bfd

View file

@ -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;