The arguments to printf() were swapped.

This commit is contained in:
ru 2005-09-16 20:38:33 +00:00
parent 63fab0fe2d
commit 800ef1986b

View File

@ -536,8 +536,8 @@ vlan_start(struct ifnet *ifp)
evl->evl_encap_proto = htons(ETHERTYPE_VLAN);
evl->evl_tag = htons(ifv->ifv_tag);
#ifdef DEBUG
printf("%s: %*D\n", (int)sizeof(*evl),
__func__, (unsigned char *)evl, ":");
printf("%s: %*D\n", __func__, (int)sizeof(*evl),
(unsigned char *)evl, ":");
#endif
}