Rework patty_ax25_address members as uint8_t
This commit is contained in:
parent
8ee2b32342
commit
bbbe7f8bfd
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue