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:
parent
6cac567e1b
commit
65f1bb65fe
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78251
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user