Skip to content

Commit

Permalink
UI: ConfUtil: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tnodir committed Feb 13, 2024
1 parent 365bf30 commit 921500d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/util/conf/confutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ void ConfUtil::writeLimit(fort_speed_limit *limit, quint32 kBits, quint32 buffer
limit->plr = packetLoss;
limit->latency_ms = latencyMsec;
limit->buffer_bytes = bufferSize;
limit->bps = kBits * (1024 / 8);
limit->bps = quint64(kBits) * (1024 / 8);
}

void ConfUtil::writeAddressRanges(char **data, const addrranges_arr_t &addressRanges)
Expand Down

0 comments on commit 921500d

Please sign in to comment.