aboutsummaryrefslogtreecommitdiff
path: root/stand/libsa/arp.c
diff options
context:
space:
mode:
Diffstat (limited to 'stand/libsa/arp.c')
-rw-r--r--stand/libsa/arp.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/stand/libsa/arp.c b/stand/libsa/arp.c
index 7d49559b4e04..eff8b9f332a3 100644
--- a/stand/libsa/arp.c
+++ b/stand/libsa/arp.c
@@ -31,13 +31,8 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#) Header: arp.c,v 1.5 93/07/15 05:52:26 leres Exp (LBL)
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
@@ -178,7 +173,7 @@ arprecv(struct iodesc *d, void **pkt, void **payload, time_t tleft, void *extra)
if (n == -1 || n < sizeof(struct ether_arp)) {
#ifdef ARP_DEBUG
if (debug)
- printf("bad len=%d\n", n);
+ printf("bad len=%zd\n", n);
#endif
free(ptr);
return (-1);