1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-09 13:42:56 +00:00

Give 'i' a type (int).

This commit is contained in:
Peter Wemm 1999-05-10 15:48:01 +00:00
parent 2c649d3327
commit bda70455bf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=46901

View File

@ -1,4 +1,4 @@
/* $Id: am7990.c,v 1.1 1998/08/20 08:27:10 dfr Exp $ */
/* $Id: am7990.c,v 1.2 1998/12/04 22:54:42 archie Exp $ */
/* $NetBSD: am7990.c,v 1.43 1998/03/29 22:36:42 mycroft Exp $ */
/*-
@ -1459,7 +1459,7 @@ char *
ether_sprintf(ap)
register u_char *ap;
{
register i;
int i;
static char etherbuf[18];
register char *cp = etherbuf;
static char digits[] = "0123456789abcdef";