From f793bf351c24c9162c087c2adec3765639eb51f1 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Fri, 1 Dec 2017 18:01:14 +0100 Subject: [PATCH] sfunction_cansetup: correct debug message for rx/tx sockets open. Signed-off-by: Pavel Pisa --- blocks/tlc_c/sfunction_cansetup.tlc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blocks/tlc_c/sfunction_cansetup.tlc b/blocks/tlc_c/sfunction_cansetup.tlc index 4189f10..4e2a35a 100644 --- a/blocks/tlc_c/sfunction_cansetup.tlc +++ b/blocks/tlc_c/sfunction_cansetup.tlc @@ -221,7 +221,7 @@ printf("CAN socket bind error.\n"); exit(1); } - printf("rx opening %s\n", ifname); + printf("tx opening %s\n", ifname); can_tx_handles[idx] = fd; } @@ -272,7 +272,7 @@ exit(1); } - printf("tx opening %s\n", ifname); + printf("rx opening %s\n", ifname); can_rx_handles[idx] = fd; } } -- 2.39.2