CI: Fix warnings

This commit is contained in:
Kyle Schwarz
2023-12-01 22:20:41 +00:00
committed by Kyle Johannes
parent 0497b361ef
commit bddbcfcf6d
20 changed files with 87 additions and 283 deletions
+1 -1
View File
@@ -545,7 +545,7 @@ bool IDeviceSettings::setBaudrateFor(Network net, int64_t baudrate) {
report(APIEvent::Type::BaudrateNotFound, APIEvent::Severity::Error);
return false;
}
cfg->Baudrate = baudrate;
cfg->Baudrate = (uint32_t)baudrate;
return true;
}
default: