Merge pull request #228 from bensuperpc/change_cast

This commit is contained in:
flow
2022-10-23 14:28:33 -03:00
committed by Sefa Eyeoglu
parent 35e792c5de
commit fcef6321fc
6 changed files with 9 additions and 9 deletions

View File

@ -445,7 +445,7 @@ void DeviceFlow::onRefreshError(QNetworkReply::NetworkError error, QNetworkReply
if(refreshReply) {
refreshReply->deleteLater();
}
qDebug() << "DeviceFlow::onRefreshFinished: Error" << (int)error << " - " << errorString;
qDebug() << "DeviceFlow::onRefreshFinished: Error" << static_cast<int>(error) << " - " << errorString;
}
}