huawei: fix guint64 string formatting
guint64
expands to unsigned long long
or unsigned long
depending on the system's architecture to guarantee 64 bits, see guint64 in GLib docs.
As specified in the documentation we should use G_GINT64_MODIFIER
and G_GUINT64_FORMAT
when formatting these strings.
Edited by Lukas Vögl