mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Bugfix: GUI: Use unsigned long long type to avoid implicit conversion of MSB check
This commit is contained in:
parent
94c0287aec
commit
cea91a1e40
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue