From 2b17010dee9c2f2a4755fa419158bcbd92fbdc7e Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 14 Jul 2013 12:34:45 -0600 Subject: Fix an error in the ordering of fields in zm_transition_s structure; update documentation --- apps/system/zmodem/zm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/system/zmodem/zm.h') diff --git a/apps/system/zmodem/zm.h b/apps/system/zmodem/zm.h index 60be71ff4..10f4640c5 100644 --- a/apps/system/zmodem/zm.h +++ b/apps/system/zmodem/zm.h @@ -287,8 +287,8 @@ typedef int (*action_t)(FAR struct zm_state_s *pzm); struct zm_transition_s { uint8_t type; /* Event (Frame type) */ - uint8_t next; /* Next state */ bool bdiscard; /* TRUE: discard buffered input */ + uint8_t next; /* Next state */ action_t action; /* Transition action */ }; -- cgit v1.2.3