diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-07-10 12:01:28 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-07-29 21:09:32 +0300 |
commit | 426e9ecc6fb8366c1c17af692deddd90df570cd8 (patch) | |
tree | 0d3bcc17652661f2ced82026a2943d95effa9a59 | |
parent | a6577b272e763303fc1a86bd54888e6f2b43cb37 (diff) |
Fix config.h include guards
-rw-r--r-- | keyboards/ergodox/ez/config.h | 4 | ||||
-rw-r--r-- | keyboards/ergodox/infinity/config.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/ergodox/ez/config.h b/keyboards/ergodox/ez/config.h index 59fc0fda74..084a044ee1 100644 --- a/keyboards/ergodox/ez/config.h +++ b/keyboards/ergodox/ez/config.h @@ -16,8 +16,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef CONFIG_H -#define CONFIG_H +#ifndef ERGODOX_EZ_CONFIG_H +#define ERGODOX_EZ_CONFIG_H #include "../config.h" diff --git a/keyboards/ergodox/infinity/config.h b/keyboards/ergodox/infinity/config.h index 83d7c58378..9e264083be 100644 --- a/keyboards/ergodox/infinity/config.h +++ b/keyboards/ergodox/infinity/config.h @@ -15,8 +15,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef CONFIG_H -#define CONFIG_H +#ifndef INFINITY_ERGODOX_CONFIG_H +#define INFINITY_ERGODOX_CONFIG_H #include "../config.h" |