HACK: numa: fix OSX error
diff --git a/numa.c b/numa.c
index ca73145..92a9e8c 100644
--- a/numa.c
+++ b/numa.c
@@ -231,8 +231,7 @@
 
     if (src >= MAX_NODES || dst >= MAX_NODES) {
         error_setg(errp,
-                   "Invalid node %" PRIu16
-                   ", max possible could be %" PRIu16,
+                   "Invalid node %u, max possible could be %u",
                    MAX(src, dst), MAX_NODES);
         return;
     }