Bugfix: GUI: Use unsigned long long type to avoid implicit conversion of MSB check

This commit is contained in:
Luke Dashjr 2020-02-21 19:09:49 +00:00
parent 94c0287aec
commit cea91a1e40

View file

@ -760,7 +760,7 @@ QString formatServicesStr(quint64 mask)
QStringList strList;
for (int i = 0; i < 64; i++) {
uint64_t check = 1LL << i;
uint64_t check = 1ull << i;
if (mask & check)
{
strList.append(serviceFlagToStr(check, i));