https://bugs.kde.org/show_bug.cgi?id=498373
--- Comment #2 from Henry Hu <henry.hu...@gmail.com> --- Preparing fixes in https://invent.kde.org/henryhu/ksystemstats/-/commits/freebsd_mem The problem is that the code tried to convert a uint64_t to QVariant and sent it through dbus; however, uint64_t maps to Qt type 'ulong', which is not mapped for Qt DBus type system (https://doc.qt.io/qt-6/qdbustypesystem.html). On the other hand, we can use 'unsigned long long', which maps to Qt type 'qulonglong', which maps to DBus type 'uint64', which is what we want. -- You are receiving this mail because: You are watching all bug changes.