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

View File

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