From: Julien Grall Date: Tue, 14 Jan 2014 01:41:01 +0000 (+0000) Subject: xen/netfront: Use the correct type for rx_pfn_array X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=bc9e4e226202614f5f6d22b59d786ffe6a76f84f;p=people%2Fjulieng%2Ffreebsd.git xen/netfront: Use the correct type for rx_pfn_array --- diff --git a/sys/dev/xen/netfront/netfront.c b/sys/dev/xen/netfront/netfront.c index 9f6ee017da77..0d5c5a687ae0 100644 --- a/sys/dev/xen/netfront/netfront.c +++ b/sys/dev/xen/netfront/netfront.c @@ -281,7 +281,7 @@ struct netfront_info { int xn_if_flags; struct callout xn_stat_ch; - u_long rx_pfn_array[NET_RX_RING_SIZE]; + xen_pfn_t rx_pfn_array[NET_RX_RING_SIZE]; struct ifmedia sc_media; bool xn_resume;