Commit 05065fea authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix another size_t printf format

parent 6313596a
...@@ -328,7 +328,7 @@ barrier_sock_sync(struct barrier *b, struct vtclog *vl) ...@@ -328,7 +328,7 @@ barrier_sock_sync(struct barrier *b, struct vtclog *vl)
vtc_log(vl, 0, "Barrier(%s) read failed: %s (errno=%d)", vtc_log(vl, 0, "Barrier(%s) read failed: %s (errno=%d)",
b->name, strerror(i), i); b->name, strerror(i), i);
if (sz > 0) if (sz > 0)
vtc_log(vl, 0, "Barrier(%s) unexpected data (%ldB)", vtc_log(vl, 0, "Barrier(%s) unexpected data (%zdB)",
b->name, sz); b->name, sz);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment