Browse Source

Fix overflow warning in ordinary keymap

Fred Sundvik 8 years ago
parent
commit
12159e782c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      keyboards/ergodox/keymaps/ordinary/keymap.c

+ 1 - 1
keyboards/ergodox/keymaps/ordinary/keymap.c

@@ -392,7 +392,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
 
         case NotEq:
         if (record->event.pressed) {
-            return MACRO( I(10), D(LSFT), T(EXLM), U(LSFT), T(EQL), END  ); // !=
+            return MACRO( I(10), D(LSFT), T(1), U(LSFT), T(EQL), END  ); // !=
         }
         break;