From 91b9883b53e2232a2e19cdfec4a7583789b594ce Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Wed, 27 May 2020 18:13:36 -0400 Subject: [PATCH] Aesthetic struct changes in patty/ax25/frame.h --- include/patty/ax25/frame.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/patty/ax25/frame.h b/include/patty/ax25/frame.h index d9af35b..139b9db 100644 --- a/include/patty/ax25/frame.h +++ b/include/patty/ax25/frame.h @@ -22,10 +22,10 @@ enum patty_ax25_frame_cr { typedef struct _patty_ax25_frame { patty_ax25_address dest; patty_ax25_address src; - patty_ax25_address repeaters[8]; + patty_ax25_address repeaters[7]; - int hops; - int repeated; + int hops, + repeated; enum patty_ax25_version version; enum patty_ax25_frame_type type;