Module Name:    src
Committed By:   matt
Date:           Tue May 11 21:06:45 UTC 2010

Modified Files:
        src/sys/netinet [matt-nb5-mips64]: if_arp.c

Log Message:
Fix printf for u_quad_t route changes.


To generate a diff of this commit:
cvs rdiff -u -r1.143.8.1 -r1.143.8.2 src/sys/netinet/if_arp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet/if_arp.c
diff -u src/sys/netinet/if_arp.c:1.143.8.1 src/sys/netinet/if_arp.c:1.143.8.2
--- src/sys/netinet/if_arp.c:1.143.8.1	Wed Apr 21 00:28:22 2010
+++ src/sys/netinet/if_arp.c	Tue May 11 21:06:45 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_arp.c,v 1.143.8.1 2010/04/21 00:28:22 matt Exp $	*/
+/*	$NetBSD: if_arp.c,v 1.143.8.2 2010/05/11 21:06:45 matt Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2000, 2008 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.143.8.1 2010/04/21 00:28:22 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_arp.c,v 1.143.8.2 2010/05/11 21:06:45 matt Exp $");
 
 #include "opt_ddb.h"
 #include "opt_inet.h"
@@ -1539,7 +1539,7 @@
 {
 	db_printf("rtentry=%p", rt);
 
-	db_printf(" flags=0x%x refcnt=%d use=%ld expire=%ld\n",
+	db_printf(" flags=0x%x refcnt=%d use=%ld expire=%"PRId64"\n",
 			  rt->rt_flags, rt->rt_refcnt,
 			  rt->rt_use, rt->rt_expire);
 

Reply via email to