1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

Fix a printf(3) formatter to match its variable.

Reviewed by:	bde
This commit is contained in:
Bill Fumerola 1999-08-17 22:11:02 +00:00
parent ed8bcdec67
commit 4fae07fae9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=49989

View File

@ -540,7 +540,7 @@ void dump_rtentry(rt)
dump_smart_sockaddr(rt_mask(rt));
printf("rt_llinfo = %p ",(void *)rt->rt_llinfo);
printf("rt_rmx.rmx_mtu = %lu ",rt->rt_rmx.rmx_mtu);
printf("rt_refcnt = %d ",rt->rt_refcnt);
printf("rt_refcnt = %ld ",rt->rt_refcnt);
printf("rt_flags = 0x%lx\n",rt->rt_flags);
printf("rt_ifp is:\n");
dump_ifp(rt->rt_ifp);