as dyoung points out, %zu for size_t - not %zd.

This commit is contained in:
dogcow 2008-08-09 13:52:05 +00:00
parent f6a4f9e77d
commit 3d76e13568
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: clnp_raw.c,v 1.31 2008/08/08 06:26:58 dogcow Exp $ */
/* $NetBSD: clnp_raw.c,v 1.32 2008/08/09 13:52:05 dogcow Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -59,7 +59,7 @@ SOFTWARE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: clnp_raw.c,v 1.31 2008/08/08 06:26:58 dogcow Exp $");
__KERNEL_RCSID(0, "$NetBSD: clnp_raw.c,v 1.32 2008/08/09 13:52:05 dogcow Exp $");
#include <sys/param.h>
#include <sys/mbuf.h>
@ -207,7 +207,7 @@ rclnp_ctloutput(
if (argo_debug[D_CTLOUTPUT]) {
printf("rclnp_ctloutput: op = x%x, level = x%x, name = x%x\n",
op, sopt->sopt_level, sopt->sopt_name);
printf("rclnp_ctloutput: %zd bytes of data\n", sopt->sopt_size);
printf("rclnp_ctloutput: %zu bytes of data\n", sopt->sopt_size);
dump_buf(sopt->sopt_data, sopt->sopt_size);
}
#endif