summaryrefslogtreecommitdiffstats
path: root/keyboard/hhkb/keymap.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-05-20 15:42:29 +0200
committertmk <nobody@nowhere>2013-05-21 03:16:55 +0200
commit796defa86c3e8a756b66937f5c010640eeac2d13 (patch)
tree57a2ee4e96291eb23fbfb4d7553b2ee12430001a /keyboard/hhkb/keymap.c
parentadbd15d5bdbd5f28657d0fa0ecdcf25768b4267d (diff)
downloadqmk_firmware-796defa86c3e8a756b66937f5c010640eeac2d13.tar.gz
qmk_firmware-796defa86c3e8a756b66937f5c010640eeac2d13.tar.xz
Fix deprecated 'prog_*' typedef - Issue #34
- Remove prog_char from xpritnf - Remove prog_macro_t from acton_macro avr-libc-1.8 removed 'prog_*' typedef because the usage of the __progmem__ attribute on a type is not supported in GCC. http://www.nongnu.org/avr-libc/changes-1.8.html
Diffstat (limited to 'keyboard/hhkb/keymap.c')
-rw-r--r--keyboard/hhkb/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/hhkb/keymap.c b/keyboard/hhkb/keymap.c
index eb66b9dc0..265fb8729 100644
--- a/keyboard/hhkb/keymap.c
+++ b/keyboard/hhkb/keymap.c
@@ -209,7 +209,7 @@ static const uint16_t PROGMEM fn_actions[] = {
/*
* Macro definition
*/
-const prog_macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
+const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
{
keyevent_t event = record->event;
tap_t tap = record->tap;