From f91cf5d531abac60c91838a2c4b46d52cf88522c Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Mon, 13 Mar 2017 23:49:10 +0100 Subject: [PATCH] boards/nucleo_common: remove extra underscore in header guard --- boards/nucleo-common/include/board_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boards/nucleo-common/include/board_common.h b/boards/nucleo-common/include/board_common.h index b03d505a19..85fe4ea721 100644 --- a/boards/nucleo-common/include/board_common.h +++ b/boards/nucleo-common/include/board_common.h @@ -18,8 +18,8 @@ * @author Hauke Petersen */ -#ifndef BOARD_COMMON__H -#define BOARD_COMMON__H +#ifndef BOARD_COMMON_H +#define BOARD_COMMON_H #include "cpu.h" #include "periph_conf.h" @@ -55,5 +55,5 @@ void board_init(void); } #endif -#endif /* BOARD_COMMON__H */ +#endif /* BOARD_COMMON_H */ /** @} */