diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-18 16:18:39 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-18 16:21:27 +0200 |
commit | e4731dd85cc0c75046a6e3681506aed3d522f6ce (patch) | |
tree | 54b5bde678652c3d660d112c8bbf812a51bc7f77 /src/qt/guiutil.cpp | |
parent | 04d6c7d10cf66e134ed7e112127c060f78ea620a (diff) |
qt: Use quint64 for formatServicesStr
`uint64_t` was causing a build error on some systems, as that type is
not known after including just the Qt headers.
Diffstat (limited to 'src/qt/guiutil.cpp')
-rw-r--r-- | src/qt/guiutil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 389a08d9e8..304177ee11 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -810,7 +810,7 @@ QString formatDurationStr(int secs) return strList.join(" "); } -QString formatServicesStr(uint64_t mask) +QString formatServicesStr(quint64 mask) { QStringList strList; |