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 { typedef struct _patty_ax25_address {
char callsign[7]; char callsign[7];
int ssid; uint8_t ssid,
int last; last;
union { union {
int c; uint8_t c,
int repeated; repeated;
}; };
} patty_ax25_address; } patty_ax25_address;