Skip to content

Commit

Permalink
Fix dubious semicolon in #define
Browse files Browse the repository at this point in the history
Values WS_FHSS_.*_INTERVAL are defined with semicolons after the value.
It currently does not break anything, but it is not very conventional.

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
  • Loading branch information
jerome-pouiller authored and Juha Heiskanen committed Aug 5, 2021
1 parent 2ff51ab commit 319dd91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/6LoWPAN/ws/ws_common_defines.h
Expand Up @@ -381,9 +381,9 @@ typedef struct ws_bs_ie {
/* Default FHSS timing information
*
*/
#define WS_FHSS_UC_DWELL_INTERVAL 255;
#define WS_FHSS_BC_INTERVAL 1020;
#define WS_FHSS_BC_DWELL_INTERVAL 255;
#define WS_FHSS_UC_DWELL_INTERVAL 255
#define WS_FHSS_BC_INTERVAL 1020
#define WS_FHSS_BC_DWELL_INTERVAL 255

/*
* EAPOL relay and PAE authenticator socket settings
Expand Down

0 comments on commit 319dd91

Please sign in to comment.