1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-30 05:54:26 -04:00

Fix gcc warnings

This commit is contained in:
Jon Beniston
2021-10-12 12:17:57 +01:00
parent 1de5a38d6b
commit 60b500f56c
5 changed files with 8 additions and 5 deletions
+2 -2
View File
@@ -569,13 +569,13 @@ bool ChannelWebAPIUtils::patchFeatureSetting(unsigned int featureSetIndex, unsig
if (httpRC/100 == 2)
{
qDebug("ChannelWebAPIUtils::patchFeatureSetting: set feature setting %s to %s OK", qPrintable(setting), value);
qDebug("ChannelWebAPIUtils::patchFeatureSetting: set feature setting %s to %s OK", qPrintable(setting), qPrintable(value));
return true;
}
else
{
qWarning("ChannelWebAPIUtils::patchFeatureSetting: set feature setting %s to %s error %d: %s",
setting, value, httpRC, qPrintable(*errorResponse2.getMessage()));
qPrintable(setting), qPrintable(value), httpRC, qPrintable(*errorResponse2.getMessage()));
return false;
}
}