utils: Fix string format message
[project/firewall3.git] / utils.c
diff --git a/utils.c b/utils.c
index 5aa7d5531727ec5b6d37e01b07ebd9ebd71712f7..d9b1f7dc2d78e827786fe36c1a928e2aa3a6613c 100644 (file)
--- a/utils.c
+++ b/utils.c
@@ -145,7 +145,7 @@ fw3_alloc(size_t size)
        mem = calloc(1, size);
 
        if (!mem)
-               error("Out of memory while allocating %d bytes", size);
+               error("Out of memory while allocating %zd bytes", size);
 
        return mem;
 }