Skip to content

Commit 678df05

Browse files
committed
Fix missing space in error message
1 parent 98844ea commit 678df05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kwp1281_tool/firmware/kwp1281.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ kwp_result_t kwp_receive_block_expect(uint8_t title)
221221
if (kwp_rx_buf[2] == title) { return KWP_SUCCESS; }
222222

223223
uart_flush_tx(UART_DEBUG);
224-
printf("\r\n\r\nExpected to receive title 0x%02X, got0x%02X\r\n",
224+
printf("\r\n\r\nExpected to receive title 0x%02X, got 0x%02X\r\n",
225225
title, kwp_rx_buf[2]);
226226

227227
return KWP_UNEXPECTED;

0 commit comments

Comments
 (0)