Commit f656558c authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Try to make osx build happier.

And yes, why ptrdiff_t even exists and why it can be different,
semantically or otherwise, from ssize_t is beyond me...
parent 77d35ab8
......@@ -708,8 +708,8 @@ vcc_ParseDirector(struct vcc *tl)
ERRCHK(tl);
if (tl->t->e - tl->t->b > 64) {
VSB_printf(tl->sb,
"Name of %.*s too long (max 64, is %zd):\n",
PF(t_first), (tl->t->e - tl->t->b));
"Name of %.*s too long (max 64, is %zu):\n",
PF(t_first), (size_t)(tl->t->e - tl->t->b));
vcc_ErrWhere(tl, tl->t);
return;
}
......
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