diff options
author | John Klug <john.klug@multitech.com> | 2018-10-04 13:54:21 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-10-04 13:54:21 -0500 |
commit | d2a70d9285ca3339fa9df44b83cfe9bc0d5ce8b7 (patch) | |
tree | a928afadc61f9d9f6d8c6477cd472282dd9d2486 | |
parent | dcb1b3e09143cf9146a905edb451010c0aa0b127 (diff) | |
download | mts-io-d2a70d9285ca3339fa9df44b83cfe9bc0d5ce8b7.tar.gz mts-io-d2a70d9285ca3339fa9df44b83cfe9bc0d5ce8b7.tar.bz2 mts-io-d2a70d9285ca3339fa9df44b83cfe9bc0d5ce8b7.zip |
Fix typo in MTAC-ETH error message2.2.2
-rw-r--r-- | io-module/mtac_eth.c | 4 |
1 files 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 ""; } } |