summary refs log tree commit diff
path: root/quantum/process_keycode/process_printer_bb.c
diff options
context:
space:
mode:
authordbroqua <dbroqua@mousur.org>2017-04-29 15:04:01 +0200
committerdbroqua <dbroqua@mousur.org>2017-04-29 15:04:01 +0200
commit7180e195e84aabf252fcadb2852644417ac1d663 (patch)
tree2a314ac51bf1399c09a394e76ba81a56c072e7d6 /quantum/process_keycode/process_printer_bb.c
parent838aae164568a1092ae269267f8d8772d3aba781 (diff)
parent584b804ee33d53102fef3b8cdd045bca4c47bf26 (diff)
Merge branch 'master' of https://github.com/Dbroqua/qmk_firmware
Diffstat (limited to 'quantum/process_keycode/process_printer_bb.c')
-rw-r--r--quantum/process_keycode/process_printer_bb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/process_keycode/process_printer_bb.c b/quantum/process_keycode/process_printer_bb.c
index 55d3b552b2..3a00f169d8 100644
--- a/quantum/process_keycode/process_printer_bb.c
+++ b/quantum/process_keycode/process_printer_bb.c
@@ -46,7 +46,7 @@ void serial_output(void) {
 }
 
 
-void enabled_printing() {
+void enable_printing() {
 	printing_enabled = true;
 	serial_output();
 	serial_high();
@@ -82,7 +82,7 @@ void print_string(char c[]) {
 
 bool process_printer(uint16_t keycode, keyrecord_t *record) {
 	if (keycode == PRINT_ON) {
-		enabled_printing();
+		enable_printing();
 		return false;
 	}
 	if (keycode == PRINT_OFF) {