summaryrefslogtreecommitdiff
path: root/keyboards/thedogkeyboard/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/thedogkeyboard/matrix.c')
-rw-r--r--keyboards/thedogkeyboard/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/thedogkeyboard/matrix.c b/keyboards/thedogkeyboard/matrix.c
index e06fc15dc4..474fbec030 100644
--- a/keyboards/thedogkeyboard/matrix.c
+++ b/keyboards/thedogkeyboard/matrix.c
@@ -120,7 +120,7 @@ void matrix_print(void)
print_matrix_header();
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
- phex(row); print(": ");
+ print_hex8(row); print(": ");
print_matrix_row(row);
print("\n");
}