Skip to content

Commit d0cad72

Browse files
committed
gcc 9 warnings.
1 parent 7b5fc16 commit d0cad72

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

aprs_tt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ void aprs_tt_sequence (int chan, char *msg)
422422
* Anything from script, above, will override other predefined responses.
423423
*/
424424

425-
char audible_response[1000];
425+
char audible_response[sizeof(script_response) + 16];
426426

427427
snprintf (audible_response, sizeof(audible_response),
428428
"APRSTT>%s:%s",

ax25_pad.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2025,7 +2025,7 @@ int ax25_pack (packet_t this_p, unsigned char result[AX25_MAX_PACKET_LEN])
20252025
*
20262026
* Outputs: desc - Text description such as "I frame" or
20272027
* "U frame SABME".
2028-
* Supply 40 bytes to be safe.
2028+
* Supply 56 bytes to be safe.
20292029
*
20302030
* cr - Command or response?
20312031
*
@@ -2041,7 +2041,7 @@ int ax25_pack (packet_t this_p, unsigned char result[AX25_MAX_PACKET_LEN])
20412041

20422042
// TODO: need someway to ensure caller allocated enough space.
20432043
// Should pass in as parameter.
2044-
#define DESC_SIZ 40
2044+
#define DESC_SIZ 56
20452045

20462046

20472047
ax25_frame_type_t ax25_frame_type (packet_t this_p, cmdres_t *cr, char *desc, int *pf, int *nr, int *ns)

ax25_pad.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ extern unsigned short ax25_m_m_crc (packet_t pp);
435435

436436
extern void ax25_safe_print (char *, int, int ascii_only);
437437

438-
#define AX25_ALEVEL_TO_TEXT_SIZE 32 // overkill but safe.
438+
#define AX25_ALEVEL_TO_TEXT_SIZE 40 // overkill but safe.
439439
extern int ax25_alevel_to_text (alevel_t alevel, char text[AX25_ALEVEL_TO_TEXT_SIZE]);
440440

441441

0 commit comments

Comments
 (0)