summaryrefslogtreecommitdiff
path: root/keyboards/handwired/datahand/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/datahand/matrix.c')
-rw-r--r--keyboards/handwired/datahand/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/handwired/datahand/matrix.c b/keyboards/handwired/datahand/matrix.c
index a08450d779..c3f6bd42f3 100644
--- a/keyboards/handwired/datahand/matrix.c
+++ b/keyboards/handwired/datahand/matrix.c
@@ -75,7 +75,7 @@ void matrix_print(void) {
print("\nr/c 01234567\n");
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
- phex(row);
+ print_hex8(row);
print(": ");
print_bin_reverse8(matrix_get_row(row));
print("\n");