diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-18 16:18:39 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-18 16:21:27 +0200 |
| commit | e4731dd85cc0c75046a6e3681506aed3d522f6ce (patch) | |
| tree | 54b5bde678652c3d660d112c8bbf812a51bc7f77 /src/qt/guiutil.cpp | |
| parent | Merge pull request #4605 (diff) | |
| download | discoin-e4731dd85cc0c75046a6e3681506aed3d522f6ce.tar.xz discoin-e4731dd85cc0c75046a6e3681506aed3d522f6ce.zip | |
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 389a08d9e..304177ee1 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; |