diff options
author | tmk <nobody@nowhere> | 2013-05-20 22:42:29 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-05-21 10:16:55 +0900 |
commit | 796defa86c3e8a756b66937f5c010640eeac2d13 (patch) | |
tree | 57a2ee4e96291eb23fbfb4d7553b2ee12430001a /converter | |
parent | adbd15d5bdbd5f28657d0fa0ecdcf25768b4267d (diff) |
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 'converter')
-rw-r--r-- | converter/pc98_usb/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/pc98_usb/keymap.c b/converter/pc98_usb/keymap.c index 3ab0a4dbea..7420e24ac8 100644 --- a/converter/pc98_usb/keymap.c +++ b/converter/pc98_usb/keymap.c @@ -125,7 +125,7 @@ enum macro_id { DUMMY, }; -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; //uint8_t tap_count = record->tap_count; |