From 29605e331439834a7db1a1b028faa3e9fe2e0438 Mon Sep 17 00:00:00 2001 From: Marc Kleine-Budde Date: Mon, 22 Jun 2020 11:09:24 +0200 Subject: [PATCH] canfdtest: compare_frame(): remove stray space in front of "!" Signed-off-by: Marc Kleine-Budde --- canfdtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/canfdtest.c b/canfdtest.c index 79ac30a..033201c 100644 --- a/canfdtest.c +++ b/canfdtest.c @@ -114,7 +114,7 @@ static void compare_frame(struct can_frame *exp, struct can_frame *rec, int inc) } else { for (i = 0; i < rec->can_dlc; i++) { if (rec->data[i] != ((exp->data[i] + inc) & 0xff)) { - printf("Databyte %x mismatch !\n", i); + printf("Databyte %x mismatch!\n", i); print_compare(exp, rec, inc); running = 0;