From: Michael Brown Date: Wed, 13 Apr 2005 00:19:01 +0000 (+0000) Subject: Avoid compiler warnings. X-Git-Tag: v0.9.3~1994 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e8878c1faa052373ce4636c19cb8148b9fd8d67;p=thirdparty%2Fipxe.git Avoid compiler warnings. --- diff --git a/src/core/nic.c b/src/core/nic.c index b8ce252b4..8b9d64d12 100644 --- a/src/core/nic.c +++ b/src/core/nic.c @@ -376,11 +376,11 @@ struct nic * nic_device ( struct dev *dev ) { -int dummy_connect ( struct nic *nic ) { +int dummy_connect ( struct nic *nic __unused ) { return 1; } -int dummy_irq ( struct nic *nic ) { +int dummy_irq ( struct nic *nic __unused ) { return 1; }