1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Fix warning. s/char/unsigned char/ in "(char *)eth"

294: warning: ethernet address is not type unsigned char *
This commit is contained in:
Peter Wemm 2001-06-15 07:34:29 +00:00
parent 6cac567e1b
commit 65f1bb65fe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78251

View File

@ -291,7 +291,7 @@ vlan_start(struct ifnet *ifp)
evl->evl_tag = htons(ifv->ifv_tag);
#ifdef DEBUG
printf("vlan_start: %*D\n", sizeof *evl,
(char *)evl, ":");
(unsigned char *)evl, ":");
#endif
}