Mike Barcroft <[EMAIL PROTECTED]> writes: > @@ -1077,8 +1078,9 @@ > > if (buflen != sizeof(temp)) { > if (buflen != sizeof(temp) - sizeof(temp.ml_auxsingle)) { > - printf("mac_lomac_associate_vnode_extattr: bad size %d\n", > - buflen); > + printf( > + "mac_lomac_associate_vnode_extattr: bad size %ju\n", > + (uintmax_t)buflen); > return (EPERM); > } > bzero(&temp.ml_auxsingle, sizeof(temp.ml_auxsingle));
Oops, I forgot we have %z in printf(9) now. That would obviously be better. Best regards, Mike Barcroft To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message