diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-11-26 12:38:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-26 12:38:10 -0500 |
commit | 637170d56043a5a0f11445f605c983e41def2a08 (patch) | |
tree | ae601b195ce121708b289073a7887528b2f6e203 | |
parent | 746fd15638e2a42ea7bd69e2d0bb6a1f8e465f4e (diff) | |
parent | 6fee7e178f7c949213a124d78de60bc30267d367 (diff) |
Merge pull request #906 from priyadi/unicode_map_fix_warning
fix strict-prototypes warning
-rw-r--r-- | quantum/process_keycode/process_unicode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode.h b/quantum/process_keycode/process_unicode.h index 065eeb5f6a..f17cfa6cf2 100644 --- a/quantum/process_keycode/process_unicode.h +++ b/quantum/process_keycode/process_unicode.h @@ -22,6 +22,7 @@ void register_hex(uint16_t hex); bool process_unicode(uint16_t keycode, keyrecord_t *record); #ifdef UNICODEMAP_ENABLE +void unicode_map_input_error(void); bool process_unicode_map(uint16_t keycode, keyrecord_t *record); #endif |