From 319dd91bcef6954b94fc28235925bf15dda0b229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Pouiller?= Date: Thu, 4 Mar 2021 16:24:56 +0100 Subject: [PATCH] Fix dubious semicolon in #define MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- source/6LoWPAN/ws/ws_common_defines.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/6LoWPAN/ws/ws_common_defines.h b/source/6LoWPAN/ws/ws_common_defines.h index 8ea6ab3f0687..56ad6521ca39 100644 --- a/source/6LoWPAN/ws/ws_common_defines.h +++ b/source/6LoWPAN/ws/ws_common_defines.h @@ -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