Use %zu to print values with type size_t.

This commit is contained in:
Stefan Farfeleder 2004-06-14 20:55:30 +00:00
parent 97b88fbf30
commit 067a9d4cc7

View File

@ -1047,7 +1047,7 @@ rad_put_vendor_attr(struct rad_handle *h, int vendor, int type,
} }
if ((attr = malloc(len + 6)) == NULL) { if ((attr = malloc(len + 6)) == NULL) {
generr(h, "malloc failure (%d bytes)", len + 6); generr(h, "malloc failure (%zu bytes)", len + 6);
return -1; return -1;
} }
@ -1207,13 +1207,13 @@ rad_demangle_mppe_key(struct rad_handle *h, const void *mangled,
*/ */
*len = *P; *len = *P;
if (*len > mlen - 1) { if (*len > mlen - 1) {
generr(h, "Mangled data seems to be garbage %d %d", generr(h, "Mangled data seems to be garbage %zu %zu",
*len, mlen-1); *len, mlen-1);
return NULL; return NULL;
} }
if (*len > MPPE_KEY_LEN * 2) { if (*len > MPPE_KEY_LEN * 2) {
generr(h, "Key to long (%d) for me max. %d", generr(h, "Key to long (%zu) for me max. %d",
*len, MPPE_KEY_LEN * 2); *len, MPPE_KEY_LEN * 2);
return NULL; return NULL;
} }