Commit d613a6403adc3e82689581e7ec468370e1c576b7
1 parent
4d3bf7be
Add a missing space in a verbose message
Showing
1 changed file
with
1 additions
and
1 deletions
src/modbus.c
| ... | ... | @@ -624,7 +624,7 @@ static int receive_msg(modbus_t *ctx, int msg_length_computed, uint8_t *msg, int |
| 624 | 624 | if (msg_length_computed == MSG_LENGTH_UNDEFINED) |
| 625 | 625 | printf("...\n"); |
| 626 | 626 | else |
| 627 | - printf("(%d bytes)...\n", msg_length_computed); | |
| 627 | + printf(" (%d bytes)...\n", msg_length_computed); | |
| 628 | 628 | } |
| 629 | 629 | |
| 630 | 630 | /* Add a file descriptor to the set */ | ... | ... |