aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCallum Oakley <c.oakley108@gmail.com>2019-06-25 18:13:01 +0100
committerDrashna Jaelre <drashna@live.com>2019-06-25 10:13:00 -0700
commit8fd3f42281885346f93fff2f122569c002071c67 (patch)
tree1e2ba9cc4c3394d6cc7d9cf5a1a86770f384fd96
parent2636464b858c081f421ba4f55e50d3794d679186 (diff)
downloadqmk_firmware-8fd3f42281885346f93fff2f122569c002071c67.tar.gz
qmk_firmware-8fd3f42281885346f93fff2f122569c002071c67.zip
[Keymap] use lowercase send_string for non-literals (#6193)
-rw-r--r--keyboards/planck/keymaps/callum/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/planck/keymaps/callum/keymap.c b/keyboards/planck/keymaps/callum/keymap.c
index 80dab2220..2a7a53d38 100644
--- a/keyboards/planck/keymaps/callum/keymap.c
+++ b/keyboards/planck/keymaps/callum/keymap.c
@@ -184,7 +184,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
184 184
185bool send_string_if_keydown(keyrecord_t *record, const char *s) { 185bool send_string_if_keydown(keyrecord_t *record, const char *s) {
186 if (record->event.pressed) { 186 if (record->event.pressed) {
187 SEND_STRING(s); 187 send_string(s);
188 } 188 }
189 return true; 189 return true;
190} 190}