canfdtest: compare_frame(): remove stray space in front of "!"

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
pull/224/head
Marc Kleine-Budde 2020-06-22 11:09:24 +02:00
parent d92adf68e8
commit 29605e3314
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ static void compare_frame(struct can_frame *exp, struct can_frame *rec, int inc)
} else { } else {
for (i = 0; i < rec->can_dlc; i++) { for (i = 0; i < rec->can_dlc; i++) {
if (rec->data[i] != ((exp->data[i] + inc) & 0xff)) { if (rec->data[i] != ((exp->data[i] + inc) & 0xff)) {
printf("Databyte %x mismatch !\n", i); printf("Databyte %x mismatch!\n", i);
print_compare(exp, print_compare(exp,
rec, inc); rec, inc);
running = 0; running = 0;