src/tools/wpctl.c:140:38: warning:
format specifies type 'long' but the argument has type 'guint64' (aka 'unsigned long long')

Index: src/tools/wpctl.c
--- src/tools/wpctl.c.orig
+++ src/tools/wpctl.c
@@ -160,7 +160,7 @@ translate_id (WpPlugin *def_nodes_api, guint64 id, gui
        currently SPA_ID_INVALID == G_MAXUINT32. */
     if ((id <= 0 || id >= G_MAXUINT32) && id != SPA_ID_INVALID) {
       g_set_error (error, wpctl_error_domain_quark(), 0,
-          "'%ld' is not a valid ID", id);
+          "'%llu' is not a valid ID", id);
       return FALSE;
     }
 
