diff options
author | billf <billf@FreeBSD.org> | 1999-08-17 22:10:00 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-08-17 22:10:00 +0000 |
commit | acc990918b74cad2366051119347191ca17a2a93 (patch) | |
tree | d0482eb97279e65a60a6c34f28b65f23d6bb5ce2 /sys | |
parent | 373ba6b10810b46119889b4d6a3221ffb9d06fa7 (diff) | |
download | FreeBSD-src-acc990918b74cad2366051119347191ca17a2a93.zip FreeBSD-src-acc990918b74cad2366051119347191ca17a2a93.tar.gz |
Fix a printf() formatter to match its variable.
Reviewed by: bde, luigi
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_dummynet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_dummynet.c b/sys/netinet/ip_dummynet.c index e1c45e8..5bd6a3d 100644 --- a/sys/netinet/ip_dummynet.c +++ b/sys/netinet/ip_dummynet.c @@ -10,7 +10,7 @@ * * This software is provided ``AS IS'' without any warranties of any kind. * - * $Id: ip_dummynet.c,v 1.15 1999/05/06 22:08:57 peter Exp $ + * $Id: ip_dummynet.c,v 1.16 1999/08/11 14:37:58 luigi Exp $ */ /* @@ -114,7 +114,7 @@ rt_unref(struct rtentry *rt) if (rt == NULL) return ; if (rt->rt_refcnt <= 0) - printf("-- warning, refcnt now %d, decreasing\n", rt->rt_refcnt); + printf("-- warning, refcnt now %ld, decreasing\n", rt->rt_refcnt); RTFREE(rt); } |