From d4da6dc52dd5d1c4e8e890a7a7bcf580418ad7ea Mon Sep 17 00:00:00 2001 From: gson Date: Thu, 24 Jan 2002 02:44:11 +0000 Subject: [PATCH] Debug printf within #if 0..#endif did not compile if enabled. --- sys/arch/i386/stand/lib/netif/i82557.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/i386/stand/lib/netif/i82557.c b/sys/arch/i386/stand/lib/netif/i82557.c index 167785078e3d..92db5230aff1 100644 --- a/sys/arch/i386/stand/lib/netif/i82557.c +++ b/sys/arch/i386/stand/lib/netif/i82557.c @@ -1,4 +1,4 @@ -/* $NetBSD: i82557.c,v 1.5 2001/07/25 12:47:34 drochner Exp $ */ +/* $NetBSD: i82557.c,v 1.6 2002/01/24 02:44:11 gson Exp $ */ /* * Copyright (c) 1998, 1999 @@ -415,8 +415,8 @@ EtherReceive(pkt, maxlen) if (len <= maxlen) { memcpy(pkt, (caddr_t)(rfa + 1), maxlen); #if 0 - printf("rfa status=%x, len=%x, i=%d\n", - rfa->rfa_status, len, i); + printf("rfa status=%x, len=%x\n", + rfa->rfa_status, len); #endif } else len = 0;