mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 06:52:36 +01: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
Reference in a new issue