From: Konstantin Đorđević Date: Wed, 31 Oct 2018 00:34:01 +0000 (+0100) Subject: Fix header guard in tmk_core/common/command.h (#581) X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=a159172951a2ca8a221f0268d645d29c8fd8caa3;p=max%2Ftmk_keyboard.git Fix header guard in tmk_core/common/command.h (#581) --- diff --git a/tmk_core/common/command.h b/tmk_core/common/command.h index b57a6c1c..961edf15 100644 --- a/tmk_core/common/command.h +++ b/tmk_core/common/command.h @@ -16,7 +16,7 @@ along with this program. If not, see . */ #ifndef COMMAND_H -#define COMMAND +#define COMMAND_H /* TODO: Refactoring */ typedef enum { ONESHOT, CONSOLE, MOUSEKEY } command_state_t;