aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dc01/left/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dc01/left/matrix.c')
-rw-r--r--keyboards/dc01/left/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/dc01/left/matrix.c b/keyboards/dc01/left/matrix.c
index 0e7b591f8..41ecb8e17 100644
--- a/keyboards/dc01/left/matrix.c
+++ b/keyboards/dc01/left/matrix.c
@@ -278,7 +278,7 @@ void matrix_print(void)
278 print_matrix_header(); 278 print_matrix_header();
279 279
280 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 280 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
281 phex(row); print(": "); 281 print_hex8(row); print(": ");
282 print_matrix_row(row); 282 print_matrix_row(row);
283 print("\n"); 283 print("\n");
284 } 284 }