From d2a70d9285ca3339fa9df44b83cfe9bc0d5ce8b7 Mon Sep 17 00:00:00 2001 From: John Klug Date: Thu, 4 Oct 2018 13:54:21 -0500 Subject: Fix typo in MTAC-ETH error message --- io-module/mtac_eth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io-module/mtac_eth.c b/io-module/mtac_eth.c index 7a35ea5..99e8c1d 100644 --- a/io-module/mtac_eth.c +++ b/io-module/mtac_eth.c @@ -4,7 +4,7 @@ static char* eth_gpio_pin_name_by_attr_name(const char* name, int port) { if (! strcmp(name, "reset")) { return "ap1-reset"; } else { - log_error("attribute name [%s] is invalid for LORA in port %d", name, port); + log_error("attribute name [%s] is invalid for ETH in port %d", name, port); return ""; } @@ -12,7 +12,7 @@ static char* eth_gpio_pin_name_by_attr_name(const char* name, int port) { if (! strcmp(name, "reset")) { return "ap2-reset"; } else { - log_error("attribute name [%s] is invalid for LORA in port %d", name, port); + log_error("attribute name [%s] is invalid for ETH in port %d", name, port); return ""; } } -- cgit v1.2.3