diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-07-25 03:45:43 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-07-25 03:45:43 +0000 |
commit | d2b9785bf79e0ee47c0dac9e8aadde8c08222f62 (patch) | |
tree | 455ee6705bf2b4b14232c03263ef21ca009987ac /sys/net/if_vlan.c | |
parent | 10bc4452da8ead375acc71f636c5249f74509e02 (diff) |
%lu for u_long arg
Diffstat (limited to 'sys/net/if_vlan.c')
-rw-r--r-- | sys/net/if_vlan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c index 726f897a2c3..fa15a9b4fa0 100644 --- a/sys/net/if_vlan.c +++ b/sys/net/if_vlan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vlan.c,v 1.38 2003/05/13 00:55:12 jason Exp $ */ +/* $OpenBSD: if_vlan.c,v 1.39 2003/07/25 03:45:42 jason Exp $ */ /* * Copyright 1998 Massachusetts Institute of Technology * @@ -386,7 +386,7 @@ vlan_config(struct ifvlan *ifv, struct ifnet *p) */ ifv->ifv_if.if_mtu = p->if_mtu - EVL_ENCAPLEN; #ifdef DIAGNOSTIC - printf("%s: initialized with non-standard mtu %d (parent %s)\n", + printf("%s: initialized with non-standard mtu %lu (parent %s)\n", ifv->ifv_if.if_xname, ifv->ifv_if.if_mtu, ifv->ifv_p->if_xname); #endif |