summaryrefslogtreecommitdiff
path: root/src/MTS_IO_SequansRadio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/MTS_IO_SequansRadio.cpp')
-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];