Skip to content

Use appropriate print format specifiers

Sid requested to merge sid/gnome-boxes:fix-format-warning into main

Fixes the following 3 warnings.

src/libvirt-machine.vala:79:12: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 4 has type ‘guint64’ {aka ‘long unsigned int’} [-Wformat=]
src/preferences/storage-row.vala:110:14: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 5 has type ‘guint64’ {aka ‘long unsigned int’} [-Wformat=]
src/preferences/storage-row.vala:130:11: warning: format ‘%llu’ expects argument of type ‘long long unsigned int’, but argument 4 has type ‘guint64’ {aka ‘long unsigned int’} [-Wformat=]

Merge request reports