Use %zu instead of %d for size_t.

Just in case anyone ever debugs se(4) on LP64.
This commit is contained in:
jakllsch 2010-07-27 14:04:55 +00:00
parent 7a5d0aeabe
commit 33a98ca057
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_se.c,v 1.81 2010/04/05 07:21:47 joerg Exp $ */
/* $NetBSD: if_se.c,v 1.82 2010/07/27 14:04:55 jakllsch Exp $ */
/*
* Copyright (c) 1997 Ian W. Dall <ian.dall@dsto.defence.gov.au>
@ -59,7 +59,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.81 2010/04/05 07:21:47 joerg Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_se.c,v 1.82 2010/07/27 14:04:55 jakllsch Exp $");
#include "opt_inet.h"
#include "opt_atalk.h"
@ -443,7 +443,7 @@ se_ifstart(struct ifnet *ifp)
if (len < SEMINSIZE) {
#ifdef SEDEBUG
if (sc->sc_debug)
printf("se: packet size %d (%d) < %d\n", len,
printf("se: packet size %d (%zu) < %d\n", len,
cp - (u_char *)sc->sc_tbuf, SEMINSIZE);
#endif
memset(cp, 0, SEMINSIZE - len);