summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMykola Salomatin <mykola.salomatin@globallogic.com>2023-03-15 10:46:04 +0200
committerJohn Klug <john.klug@multitech.com>2023-04-26 17:08:14 -0500
commit0f15b7265be65cbd9f66a68f6d1685b58b13e501 (patch)
tree6eaeece7da3f27c59b0a259abfc283fe923022ad
parent5149f694f4dbb39bdc3ba8e81b53a768ae92e33d (diff)
downloadlibmts-io-0f15b7265be65cbd9f66a68f6d1685b58b13e501.tar.gz
libmts-io-0f15b7265be65cbd9f66a68f6d1685b58b13e501.tar.bz2
libmts-io-0f15b7265be65cbd9f66a68f6d1685b58b13e501.zip
Fixed use of uninitialized variable
-rw-r--r--src/MTS_IO_SequansRadio.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/MTS_IO_SequansRadio.cpp b/src/MTS_IO_SequansRadio.cpp
index 8133bbf..380dd80 100644
--- a/src/MTS_IO_SequansRadio.cpp
+++ b/src/MTS_IO_SequansRadio.cpp
@@ -282,7 +282,6 @@ ICellularRadio::CODE SequansRadio::getNetworkStatusTxPower(Json::Value& jData, J
std::string sResult;
std::string sPrefix;
std::vector<std::string> vParts;
- int iValue;
CODE rc;
sCmd = "AT+SQNQRUP?";
@@ -312,7 +311,7 @@ ICellularRadio::CODE SequansRadio::getNetworkStatusTxPower(Json::Value& jData, J
break; // invalid, not known or not detectable
}
if (fTxPow < -255 || fTxPow > 99) {
- printDebug("%s| Network Status command returned unexpected value of txPower: [%s][%d]", getName().c_str(), sCmd.c_str(), iValue);
+ printDebug("%s| Network Status command returned unexpected value of txPower: [%s][%f]", getName().c_str(), sCmd.c_str(), fTxPow);
break;
}
jDebug[ICellularRadio::KEY_TXPWR] = vParts[0];