]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
process_unicode: Fix set_unicode_input_mode()
authorGergely Nagy <algernon@madhouse-project.org>
Sat, 13 Aug 2016 08:33:47 +0000 (10:33 +0200)
committerGergely Nagy <algernon@madhouse-project.org>
Sat, 13 Aug 2016 08:37:01 +0000 (10:37 +0200)
In the header, this was defined as `set_unicode_input_mode`, but the
implementation had `set_unicode_mode` for a name. Changed the
implementation to match the header.

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
quantum/process_keycode/process_unicode.c

index ad5d7f86b70cfc1ad621f0655f80f335e015386a..3fcac15ce3c7cf825cf3d3af96c876f75f86e05c 100644 (file)
@@ -13,7 +13,7 @@ uint16_t hex_to_keycode(uint8_t hex)
   }
 }
 
-void set_unicode_mode(uint8_t os_target)
+void set_unicode_input_mode(uint8_t os_target)
 {
   input_mode = os_target;
 }