diff --git a/llarp/mem.hpp b/llarp/mem.hpp index ec2db9eb1..2ab887d0f 100644 --- a/llarp/mem.hpp +++ b/llarp/mem.hpp @@ -28,7 +28,7 @@ namespace llarp DumpBuffer(const T &buff) { size_t idx = 0; - printf("buffer of size %u\n", buff.sz); + printf("buffer of size %zu\n", buff.sz); while(idx < buff.sz) { if(buff.base + idx == buff.cur)