mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 21:35:04 +02:00
Fix comparison between signed and unsigned int in MappingRequest
This commit is contained in:
parent
25f64e1aa9
commit
bf53161a0b
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ void GetAllMappingsRequest::doStart() {
|
|||
if (!_error) {
|
||||
uint32_t numberOfMappings;
|
||||
message->readPrimitive(&numberOfMappings);
|
||||
for (auto i = 0; i < numberOfMappings; ++i) {
|
||||
for (uint32_t i = 0; i < numberOfMappings; ++i) {
|
||||
auto path = message->readString();
|
||||
auto hash = message->read(SHA256_HASH_LENGTH).toHex();
|
||||
BakingStatus status;
|
||||
|
|
Loading…
Reference in a new issue